How to build any example XPCOM for current Firefox for Mac OS X C++?

2013-03-14 Thread melnyk . valentyn
I'm trying to build binary component for extension. all examples that I saw don't work at all. I need something simple, that can be build under OS X for Firefox v. 19+ ___ dev-platform mailing list dev-platform@lists.mozilla.org https://lists.mozilla.org/

Re: What does BC stand for?

2013-03-14 Thread allencblee
Any idea what the tentative timeframe of rolling this out? in firefox 23 ? On Sunday, March 10, 2013 6:18:23 AM UTC+8, RyanVM wrote: > On 3/8/2013 9:02 PM, allencb...@gmail.com wrote: > > > Thanks. Is there a build for XULrunner? > > > > > > > No, you'd have to roll your own.

Re: Turning off window.Components for the web

2013-03-14 Thread fbender
I'd suggest removing Ci altogether and shipping a shim for the empty root object (with a deprecation warning) for release only. Thus, developers may be alarmed without the users noticing at first. Then sometime in the future the shim can be removed altogether. ___

Re: ChromeWorkers and staying off the Main thread

2013-03-14 Thread Kyle Huey
On Thu, Mar 14, 2013 at 8:31 AM, wrote: > On Thursday, 14 March 2013 14:19:57 UTC, Kyle Huey wrote: > > > > > > > > Message passing from a worker to a sub-worker (or vice versa) only > involves > > > > the worker thread and the sub-worker thread. > > > > > > > > - Kyle > > Excellent thanks Kyle,

Re: ChromeWorkers and staying off the Main thread

2013-03-14 Thread neil
On Thursday, 14 March 2013 14:19:57 UTC, Kyle Huey wrote: > > > > Message passing from a worker to a sub-worker (or vice versa) only involves > > the worker thread and the sub-worker thread. > > > > - Kyle Excellent thanks Kyle, that's what I was hoping. Before I go ahead and re-invent t

Re: ChromeWorkers and staying off the Main thread

2013-03-14 Thread Kyle Huey
On Thu, Mar 14, 2013 at 7:08 AM, wrote: > Hi all, > > To what extent is the Main thread consumed by a (Chrome)Workers > postMessage() and onmessage() calls to other Sub(Chrome)Workers? > > Specifically, if a sub-worker postMessage()s to it's listening parent > Worker, and the parent Worker posts

ChromeWorkers and staying off the Main thread

2013-03-14 Thread neil
Hi all, To what extent is the Main thread consumed by a (Chrome)Workers postMessage() and onmessage() calls to other Sub(Chrome)Workers? Specifically, if a sub-worker postMessage()s to it's listening parent Worker, and the parent Worker posts back to the sub does this hit the main thread signi