Re: Announcing Eclipse CDT IDE Support

2014-10-23 Thread Botond Ballo
> A new command has now landed: './mach ide eclipse' Nice! Thanks for all your work on this. > will perform the following: > > - Rebuild the project Does this work on B2G? Cheers, Botond ___ dev-platform mailing list dev-platform@lists.mozilla.org ht

Announcing Eclipse CDT IDE Support

2014-10-23 Thread Benoit Girard
A new command has now landed: './mach ide eclipse' and all you need is the eclipse CDT binary on your path. This is your ideal pre-coffee/lunch command and will perform the following: - Rebuild the project - Generate an eclipse workspace + gecko project - Import the mozilla coding style - Launch t

Re: Changing our help messages to mention --foo options instead of -foo options

2014-10-23 Thread Nicholas Nethercote
On Thu, Oct 23, 2014 at 6:20 PM, Nicholas Nethercote wrote: > > > So, for example, the following are all equivalent: -h, -H, --h, --H. On Windows, /h and /H are also equivalent. > As are -help, --help, -HELP, --HeLp. Again on Windows, /help, /HELP, /HelP, etc. are equivalent. As are /-help, /-H

Changing our help messages to mention --foo options instead of -foo options

2014-10-23 Thread Nicholas Nethercote
Hello. Our command-line option handling is *interesting*. Did you know that: - our options work in -foo form and --foo form; - they are case-insensitive; - this holds for both short options (e.g. -h) and long options (e.g. -help). So, for example, the following are all equivalent: -h, -H, --h,

Re: Screen Capture

2014-10-23 Thread David Burns
On 23/10/2014 22:10, Jet Villegas wrote: Roc wrote up a proposal last year for a web-facing screen capture API: https://wiki.mozilla.org/User:Roc/ScreenCaptureAPI Even if not web-facing, we could use the implementation code to cover chrome use cases like this one: https://bugzilla.mozilla.org/s

Re: Screen Capture

2014-10-23 Thread Martin Thomson
We're already doing screen capture in Firefox 33. Video, not still I think. But the APIs are in place, if the implementation is not. This is not web-facing in the classic sense (https://wiki.mozilla.org/Screensharing) but there are plans to make at least a limited feature set available. Yes,

Re: Screen Capture

2014-10-23 Thread Robert O'Callahan
On Fri, Oct 24, 2014 at 10:10 AM, Jet Villegas wrote: > Roc wrote up a proposal last year for a web-facing screen capture API: > https://wiki.mozilla.org/User:Roc/ScreenCaptureAPI > > Even if not web-facing, we could use the implementation code to cover > chrome use cases like this one: > https:/

Screen Capture

2014-10-23 Thread Jet Villegas
Roc wrote up a proposal last year for a web-facing screen capture API: https://wiki.mozilla.org/User:Roc/ScreenCaptureAPI Even if not web-facing, we could use the implementation code to cover chrome use cases like this one: https://bugzilla.mozilla.org/show_bug.cgi?id=933389 At a recent GFx/Layo

Re: gtests that start XPCOM

2014-10-23 Thread Benoit Girard
Like Ted mentions GTest doesn't support running test in parallel -in the same process-, you have to launch multiple processes which the ./mach gtest command helps you do. Currently GTest has a ScopedXPCOM thing. I'm not sure exactly what this implies however: http://mxr.mozilla.org/mozilla-central