1
vote
2answers
29 views
What IPC method should I use between Firefox extension and C# code running on the same machine?
I have a question about how to structure communication between a (new) Firefox extension and existing C# code.
The firefox extension will use configuration data and will produce …
1
vote
1answer
26 views
Accessing tabs on Firefox with a C++ XPCOM extension
What XPCOM interfaces should I use to detect opening, closing and switching of tabs and also get their associated URL from a firefox extension?
I have seen instances of code that m …
0
votes
2answers
22 views
How do I link to a DLL from javascript in XULRunner?
I have a dll (that I didn't write) and I would like to use it in an XULRunner application. I know nearly nothing about this, so bear with me. Apparently I can use XPCOM to load the …
2
votes
3answers
228 views
Problems Registering XPCOM component
Hi,
I'm working on my first XPCOM component. Unfortunately, I can't register it successfully.
Building is ok. Here's the makefile
CXX = g++
CPPFLAGS += -fno-rtti \
- …
0
votes
2answers
11 views
XPCOM Security issues
I'm developing a Firefox plugin using XPCOM, I've not yet read all the docs, but as far as I can see, A plugin is simply a DLL that provides services via a XPCOM interface and inte …
0
votes
1answer
59 views
XPCOM tab based variable.
When user clicks on of the button in toolbar it opens an url in the browser windows. user can process that content on clicking on some other button on the toolbar.
However it crea …
0
votes
5answers
1k views
How to HTML encode a string in JavaScript from a Firefox extension
So I know I can write my own HTML-encoding function like this:
function getHTMLEncode(t) {
return t.toString().replace(/&/g,"&").replace(/"/g,""").replace …
1
vote
2answers
86 views
how to create an nsIFile object using URIs
I'm making extension for firefox, and I want to my extension open a file like "file:///home/blahblah/foo.txt" and then put content of this file in text area. Its easy with files "h …
-1
votes
1answer
32 views
do_createinstance xpcom
i use this code nsCOMPtr file = do_CreateInstance("@mozilla.org/file/local;1", &rv);
it says error C3861: 'do_CreateInstance': identifier not found
2
votes
2answers
53 views
Test driven development for C++ XPCOM component ?
I want to create a Firefox extension using c++ XPCOM component which in turn uses javascript XPCOM component. Is there any framework that allows test driven development of C++ XPCO …
1
vote
1answer
67 views
Dependency Injection in XPCOM
Hi,
One of my XPCOM components make use of other XPCOM components. As I was testing it, I found it cumbersome cos of the dependencies. Then I thought of using Dependency Injection …
0
votes
1answer
33 views
Service Control Security Issues in XPCOM
I'm am developing a Firefox extension which interfaces with an underlying Windows service (which I have already made).
During the development so far I encountered one bug in the i …
0
votes
3answers
79 views
How to convert char* to PRUnichar *
I need to pass char* to XPCOM function but that function accepts PRUnichar *. How to convert from char* to PRUnichar * ?
0
votes
1answer
40 views
Creating an image from a nsIBinaryInputStream
I create a binary input stream using some js trickery which contains compressed image data like jpeg or gif. I want to decode and display this data either using imgITools::decodeIm …
1
vote
1answer
53 views
How to close thread when firefox closes
Hello, I have a extension that uses multithreading using worker thread as shown here .
Whenever worker thread returns value to main thread, I am updating UI and I am starting that …
