Commit Graph

14240 Commits

Author SHA1 Message Date
Hsin-Yi Tsai
f573249777 Bug 869306 - Add call.isOutgoing for BT Cert. r=allstars.chh 2013-05-08 18:39:05 +08:00
Fernando Jiménez
cd8098c117 Bug 861921 - Notify the user about the low free storage situation. r=dhylands 2013-05-10 10:51:19 +02:00
Eric Chou
5460ee2214 Bug 860166 - New mechanism for establishing outboung Bluetooth connection, r=mrbkap
Things we have done in this patch:

1. Make BluetoothHfpManager/BluetoothOppManager implement BluetoothProfileManagerBase
2. Add function BluetoothService::GetServiceChannel()
3. Once GetServiceChannel() is done, callback Bluetooth*Manager::OnGetServiceChannel() will be invoked
4. Remove unused function BluetoothService::GetSocketViaService()
2013-05-10 14:39:12 +08:00
Eric Chou
42d6900093 Bug 860166 - Create new class BluetoothProfileManagerBase, r=mrbkap
BluetoothProfileManagerBase is a base class of Bluetooth profile managers.
It will be a generic interface declaring basic functions that all profile
managers should implement, such as Connect(), Disconnect() and IsConnected().
Currently there is only one callback function OnGetServiceChannel(), which
will be called after calling BluetoothService::GetServiceChannel().
2013-05-10 14:39:09 +08:00
Shawn Huang
caf7ac3e9d Bug 869337 - Fix missing At comman reply OK after +COPS, r=gyeh, r=echou 2013-05-10 13:46:50 +08:00
Justin Lebar
fd6eaad02e Bug 870181 - Part 3: Test that we downgrade processes' CPU priorities when appropriate. r=bent 2013-05-09 16:27:06 -04:00
Justin Lebar
ffbacde3d5 Bug 870181 - Part 2: Lower CPU priority for non-high priority processes when there's an incoming call. r=bent 2013-05-09 16:27:06 -04:00
Justin Lebar
3bce4cb89f Bug 868521 - Add more of a delay between launching a new app and creating a new preallocated process. r=dhylands 2013-05-09 16:27:06 -04:00
David Zbarsky
66e862daca Bug 864206 - Use dom::Touch instead of nsIDOMTouch where possible r=Ms2ger 2013-05-17 13:17:53 -07:00
Ryan VanderMeulen
20ac561a9b Merge m-c to inbound. 2013-05-17 15:40:53 -04:00
Bobby Holley
8abc6c0ed9 Bug 860941 - Remove assertion annotations for the now-removed mArguments assertion. r=jst 2013-05-17 10:43:20 -07:00
Bobby Holley
7a88d73382 Bug 860941 - Tests. r=jst
We augment the existing showModalDialog tests with test coverage for
dialogArguments and returnValue.
2013-05-17 10:43:20 -07:00
Bobby Holley
88c65fa834 Bug 860941 - Stop clearing return values on navigation. r=jst
Since this stuff is a property on the browsing context, this only makes sense
as a security check. But now that we're using a DialogValueHolder, the origin
checks are taken care of. So we can kill this off.
2013-05-17 10:43:19 -07:00
Bobby Holley
ff1416d597 Bug 860941 - Use DialogValueHolder for returnValue. r=jst
The spec currently has returnValue as a DOMString, but this doesn't match
reality given my testing. I filed [1] to fix it.

Note that nsGlobalModalWindow is already set up to CC mReturnValue. Since
we're swapping in another CC-ed container class, we don't need to make any
changes here.

[1] https://www.w3.org/Bugs/Public/show_bug.cgi?id=21771
2013-05-17 10:43:19 -07:00
Bobby Holley
68187fbfaa Bug 860941 - Make dialogArguments default to |undefined| rather than |null|. r=jst
This is correct by my reading of the spec. Quoting:

The dialogArguments IDL attribute, on getting, must check whether its browsing
context's active document's origin is the same as the dialog arguments' origin.
If it is, then the browsing context's dialog arguments must be returned
unchanged. Otherwise, if the dialog arguments are an object, then the empty
string must be returned, and if the dialog arguments are not an object, then
the stringification of the dialog arguments must be returned.
2013-05-17 10:43:19 -07:00
Bobby Holley
e212c13aff Bug 860941 - Separate the handling of |dialogArguments| and |arguments|, and use IDL for the |dialogArguments| getter. r=jst
This patch is bigger than I'd like it to be, but there are a lot of interlocked
dependencies and I eventually decided it was easier to just lump it together.

The semantics of |showModalDialog|/|window.dialogArguments| (an web-exposed
HTML5 feature) and |openDialog|/|window.arguments| (a XUL-proprietary feature)
are quite different. The former is essentially a security-checked JSVal, while
the latter gets converted into an array. We handled them together in the old
world, which led to a lot of confusion and muddled semantics. This patch
separates them.

This patch also eschews the roundabout resolve hook for dialogArguments in favor
of returning them directly from the XPIDL getter. This better matches the
behavior in the spec, especially because it allows dialogArguments to live on
the outer as they're supposed to, rather than the first inner that happens to
end up in the docshell. All in all, this should make this all very
straightforward to convert WebIDL when the time comes.

The current spec on the origin checks here is pretty fictional, so I've filed
https://www.w3.org/Bugs/Public/show_bug.cgi?id=21932 to fix it. This patch
should more or less preserve the current security behavior.
2013-05-17 10:43:19 -07:00
Bobby Holley
36a0e8c302 Bug 860941 - Remove unnecessary argument cleanup in nsGlobalWindow::DetachFromDocShell. r=jst
This function proceeds to invoke CleanUp(), which also cleans this stuff up.
2013-05-17 10:43:18 -07:00
Bobby Holley
6e9eda51e8 Bug 860941 - Clarify shutdown invariants in ~nsGlobalWindow. r=jst
While the mArguments invariant should hold for _outers_, it doesn't necessarily
hold for inners, so this assertion fires reliably in automation. If mCleanedUp
is true then mArguments is definitely null, so let's disentangle this from
mArguments and be clearer about the invariants we expect.
2013-05-17 10:43:18 -07:00
Bobby Holley
fcd577710a Bug 860941 - Remove mArgumentsLast. r=jst
I'm not sure what it used to do, but it sure doesn't do a damn thing now.
2013-05-17 10:43:18 -07:00
Andrew McCreight
e7c16849ba Bug 865320 - Move the logic for deciding when to doing a merging CC into the cycle collector. r=smaug 2013-04-29 16:41:41 -07:00
Nathan Froyd
f7bb31d430 Bug 873479 - fix BindingUtils.h to compile with GCC 4.4 in non-C++0x mode; r=bz 2013-05-17 10:44:19 -04:00
Nathan Froyd
3275d69d1a Bug 871578 - don't include AccessCheck.h in bindings unless necessary; r=bz 2013-05-13 11:32:41 -04:00
Nathan Froyd
5a9f4abbe5 Bug 871578 - don't include nsContentUtils.h in bindings unless necessary; r=bz 2013-05-13 10:07:08 -04:00
Ehsan Akhgari
2be0200087 Bug 871321 - Fix rooting hazards in the SMS code; r=till 2013-05-12 18:33:04 -04:00
Michael Harrison
6a023a465b Bug 260272 - Remove obsolete code from nsGlobalChromeWindow::SetCursor. r=dbaron,mats 2013-05-12 23:09:29 +02:00
David Zbarsky
70b156af55 Bug 868312 - Rooting fixes for dom r=bz 2013-05-12 01:17:42 -04:00
Masatoshi Kimura
f468cc292d Bug 871153 - Rename KeyEvent back to KeyboardEvent. r=smaug
--HG--
rename : dom/webidl/KeyEvent.webidl => dom/webidl/KeyboardEvent.webidl
2013-05-12 14:08:37 +09:00
Ehsan Akhgari
fc17efaf67 Bug 871315 - Fix some rooting hazards in content/; r=till,bzbarsky 2013-05-13 13:43:53 -04:00
Terrence Cole
fd72fc252e Bug 777548 - Make non-cc-participant tracing indirect; r=smaug,billm,jst 2013-03-28 13:37:22 -07:00
Boris Zbarsky
797571f64b Bug 867863. Be a little more careful in GlobalObject initialization. r=peterv 2013-05-08 15:50:58 -04:00
Mark Banner
e569d3dfb4 Bug 863069 - Part 2: Sort lists in moz.build files (mac specific); r=gps 2013-05-08 19:31:52 +01:00
Bobby Holley
3514c0be6e Bug 869800 - Stop using calling JS_SetGlobalObject in workers. r=bent
This makes workers the first consumer to be weaned off this API. \o/
2013-05-08 10:45:46 -07:00
Bobby Holley
b860f670ea Bug 869800 - Remove JS_GetGlobalObject from workers. r=bent 2013-05-08 10:45:46 -07:00
Colby Russell
8dde055a75 Bug 861495 - Transplant getOuterWindowWithId from nsIDOMWindowUtils to a window-related service: ConsoleAPITests.js; r=msucan 2013-05-08 19:54:43 +03:00
Ed Morley
4b3f666ab0 Merge latest green inbound changeset and mozilla-central 2013-05-08 15:02:58 +01:00
Gene Lian
7613d97a56 Bug 869841 - B2G MMS: Gaia cannot get request returned after calling .sendMMS(...). r=vicamo a=leo+ 2013-05-08 18:40:41 +08:00
Peter Van der Beken
e250018b41 Bug 869038 - Clear expando object the right way. r=bz.
--HG--
extra : rebase_source : c75c0ac7b07bbe9396f1b77b34c1e34575078a49
2013-05-08 09:20:13 +02:00
Eric Chou
cde567409c Bug 869332 - Don't reset call status while receiving an unhandled CallStateChanged event, r=gyeh 2013-05-08 14:16:51 +08:00
rlin@mozilla.com
f1ef6a8b16 Bug 868960 - [FMRadio] FM Radio volume is not updated by headset ejecting. r=mwu 2013-05-07 15:31:13 +08:00
Ryan VanderMeulen
f6068dd244 Merge inbound to m-c. 2013-05-07 22:10:19 -04:00
Reuben Morais
3b929b4a60 Bug 869273 - Update PhoneNumber.jsm from upstream. r=gwagner
--HG--
extra : rebase_source : 9a3a3f00c0902e1c4883353ba76d6a77337a38c6
2013-05-07 15:09:01 -07:00
Justin Lebar
0ef86009b8 Bug 868741 - Fix a null-pointer crash in ProcessPriorityManager. r=bent
This crash would occur if a ParticularProcessPriorityManager observed a
wake-lock change after being ShutDown().
2013-05-07 16:44:25 -04:00
Bobby Holley
e77e3c4631 Bug 868637 - Simplify DOM Bindings JSON parsing. r=bz
At this point we could really just hoist the JSAPI call, but it's just
cumbersome enough with all the casts that I don't really want to stick
it in the codegen.
2013-05-07 14:18:03 -07:00
Bobby Holley
af4114de6c Bug 868635 - Make merging CC heuristics go through scx. r=mccr8 2013-05-07 14:18:03 -07:00
Bobby Holley
2543fb6d40 Bug 868634 - Remove compartment entry in nsStructuredCloneContainer. r=bz
I can't see what this is supposed to be doing. The one caller defaults to aCx,
and if not, gets and pushes a context associated with the document, restoring
it to the default compartment.

So this only changes the behavior when we use the aCx that comes in from above,
in which case it's totally not clear to me why we would want to get the default
global here.
2013-05-07 14:18:03 -07:00
Luke Wagner
39b73739d0 Bug 868184 - OdinMonkey: enable by default on beta/release (r=vlad)
--HG--
extra : rebase_source : c97bf37723eded74f95aae21e2baa692cf059c2e
2013-05-07 13:34:17 -07:00
Robert O'Callahan
5c369f6cf2 Bug 866514. Part 2: Delay delivering getUserMedia stream result until the DOM object has asynchronously acquired the desired tracks. r=jesup
--HG--
extra : rebase_source : 26a908d2e1bcf0d6d83a864f47dd9d117699bb9c
2013-05-03 17:07:37 +12:00
Michael Wu
d59dd9ac0f Bug 869251 - Disable omx decoder and camera on gonk-JB, r=doublec,glandium 2013-05-02 17:21:22 -04:00
Ryan VanderMeulen
db7eb10d60 Backed out changesets bb126ac7b33d and 7bbc04988e85 (bug 861495) for webconsole mochitest timeouts. 2013-05-07 14:39:16 -04:00
Makoto Kato
132da51875 Bug 800220 - Part 3. Add null check to avoid strlen(nullptr). r=ehsan 2013-05-08 12:47:33 +09:00
Makoto Kato
0ec059eb04 Bug 800220 - Part 1. Replace PL_strlen with strlen. r=ehsan 2013-05-08 12:40:12 +09:00
Bobby Holley
5ddd3a6924 Bug 868528 - Don't expose _content over Xrays. r=mccr8 2013-05-07 20:26:19 -07:00
Boris Zbarsky
55e7537c8d Bug 868102. Don't swallow exceptions from the XPCOM/XPConnect goop when setting up a js-implemented webidl object. r=mccr8 2013-05-07 22:34:56 -04:00
Boris Zbarsky
49395eacab Bug 869311. More rooting in dom/bindings and content/base. r=smaug 2013-05-07 22:34:56 -04:00
Chia-hung Tai
acde781295 Bug 863241 - Part 2: B2G MMS: the return items from getThreads should have type to identify mms or sms. r=vyang 2013-04-26 16:40:42 +08:00
Ryan VanderMeulen
1a9142851e Backed out changesets 9ba22af0a840 and db79b5ea167b (bug 863241) for Werror fail. 2013-05-07 13:34:04 -04:00
Chia-hung Tai
2754f14e26 Bug 863241 - Fix bustage. 2013-05-07 13:14:58 -04:00
Chia-hung Tai
2f30199008 Bug 863241 - Part 2: B2G MMS: the return items from getThreads should have type to identify mms or sms. r=vyang 2013-04-26 16:40:42 +08:00
Chia-hung Tai
7d9575571b Bug 863241 - Part 1: Interface changes. r=vyang 2013-04-26 17:06:49 +08:00
Colby Russell
01fe70088e Bug 861495 - Transplant getOuterWindowWithId from nsIDOMWindowUtils to a window-related service: ConsoleAPITests.js. r=msucan 2013-05-07 12:34:21 -04:00
Colby Russell
db6bc48aa2 Bug 861495 - Part 1: Add nsIWindowMediator.getOuterWindowWithId and warn on nsIDOMWindowUtils.getOuterWindowWithId use. r=bz 2013-05-07 12:34:20 -04:00
Andrea Marchesini
a427445b39 Bug 868943 - HTMLMediaElement::mWakeLock has to be unlocked and not just set to null. r=jlebar
--HG--
rename : content/media/test/bug461281.ogg => content/html/content/test/wakelock.ogg
2013-05-07 10:54:16 -04:00
Jose Antonio Olivera Ortega
a262a77020 Bug 863130 - (Regional) The SMS delivery report is on by default. r=vicamo 2013-05-07 16:26:03 +02:00
Vincent Chang
fd4d607252 Bug 776212 - Get usb rndis interface's name automatically r=dhylands 2013-04-30 19:04:36 +08:00
Vicamo Yang
2d8780e145 Bug 860660 (follow-up): update interface uuid. r=me 2013-05-07 18:18:26 +08:00
Jed Parsons
12e2b3bb5c Bug 868530 - Unique window identifier for identity on b2g device. r=jst 2013-05-06 18:23:26 -07:00
Michael Wu
ca67e3cae3 Bug 869206 - Make webrtc code build on gonk-JB, r=jesup 2013-05-04 11:00:35 -04:00
Michael Vines
ac3702f0b2 Bug 860660 - Content process support for display of PIN/PUK retry count. r=vyang 2013-05-06 14:03:00 -07:00
Chia-hung Tai
5e4ce897ba Bug 868120 - B2G MMS: Add 'mms.debugging.enabled' pref for MMS debug messages to make sure whether message is sent by SMS or MMS. r=vyang 2013-05-06 09:57:16 -07:00
Gregor Wagner
f51cf63a50 Bug 860836 - Fix error importing contacts from SIM card. r=bent 2013-05-06 14:58:41 -04:00
Ryan VanderMeulen
bb2de1dbfd Merge m-c to birch. 2013-05-06 14:58:16 -04:00
Fabrice Desré
b77e9b3150 Bug 860571 - Pings for Firefox OS r=ferjm 2013-05-06 10:41:07 -07:00
Ryan VanderMeulen
465845882c Merge m-c to inbound. 2013-05-06 11:20:45 -04:00
Geoff Brown
037ac7adfe Bug 865006 - (2) Enable more xpcshell tests on Android; r=jmaher DONTBUILD 2013-05-06 09:14:01 -06:00
Alexandre Poirot
69e07e577e Bug 844227 - Add more functions to the webapps actor. r=fabrice 2013-05-06 09:51:53 -04:00
Ryan VanderMeulen
6454442579 Backed out changeset 4270acd843cc (bug 863130) for B2G Marionette failures. 2013-05-06 08:57:03 -04:00
Jason Smith
896c844696 Bug 863929 - Crashtest for gsmsdp_negotiate_codec crash. r=ethanhugg 2013-04-30 21:07:32 -07:00
Sankha Narayan Guria
6349c5c599 Bug 867414 - Rename SafeAutoJSContext to AutoSafeJSContext. r=bholley 2013-05-06 09:04:17 -04:00
Boris Zbarsky
4ef50b8af7 Bug 868448. Fix the successCode in dictionary to-js conversions to actually work right, and document the requirements on successCode better. r=smaug 2013-05-06 08:31:01 -04:00
Boris Zbarsky
7a83aed405 Bug 868765. Make the jsid constructor for nsDependentJSString take a Handle. r=ms2ger 2013-05-06 08:30:56 -04:00
Boris Zbarsky
efc16bb6f6 Bug 867844 part 1. Fix rooting hazards in LegacyCall. r=smaug 2013-05-06 08:30:40 -04:00
Ryan VanderMeulen
1c1f94e0f0 Merge m-c to inbound. 2013-05-06 08:29:37 -04:00
Ryan VanderMeulen
20e6b017de Merge birch to m-c. 2013-05-06 08:28:05 -04:00
Tim Taubert
e8fb862808 merge m-c to fx-team
--HG--
rename : browser/base/content/test/social/social_share_image.png => browser/base/content/test/social/social_mark_image.png
2013-05-06 13:30:45 +02:00
Jose Antonio Olivera Ortega
cb0be5c3e0 Bug 863130 - (Regional) The SMS delivery report is on by default. r=vicamo 2013-05-06 10:20:23 +02:00
Phil Ringnalda
1e4ab6c25d Merge m-c to fx-team 2013-05-05 12:28:41 -07:00
Phil Ringnalda
d3e92cd2f3 Merge m-c to m-i 2013-05-05 12:17:07 -07:00
Ehsan Akhgari
855b90e600 Bug 865248 - Implement ChannelMergerNode; r=roc
--HG--
rename : content/media/webaudio/ChannelSplitterNode.h => content/media/webaudio/ChannelMergerNode.h
2013-05-05 11:49:37 -04:00
Ehsan Akhgari
cb9c2a7a4c Bug 865247 - Part 4: Implement ChannelSplitterNode; r=roc 2013-05-05 11:49:13 -04:00
Olli Pettay
56514d79da Bug 848293 - Update AnimationEvent to be compatible with the spec, r=dbaron
--HG--
extra : rebase_source : 04f2cb9c5aa56549da0af3c722b35f3dab5746c3
2013-05-05 16:22:29 +03:00
Ms2ger
f2e25db30c Bug 868727 - Pass an nsAString to nsGlobalWindow::GetChildWindow; r=bz 2013-05-05 09:03:19 +02:00
Ms2ger
a9a8f91052 Bug 866600 - Avoid using nsIDOMDocument::GetHidden; r=mounir 2013-05-05 09:03:15 +02:00
Ms2ger
088cca5a9c Bug 868411 - Handlify js::GetObjectProto; r=bz 2013-05-05 09:03:14 +02:00
Olli Pettay
ac44aa8903 Bug 848291 - Update TransitionEvent to be compatible with the spec, r=dbaron 2013-05-04 17:41:20 +03:00
Ms2ger
3d80975181 Merge m-c to inbound 2013-05-04 10:47:09 +02:00
David Zbarsky
c12529b9d3 [Bug 868701] Remove classinfo for Attr r=Ms2ger 2013-05-04 03:55:53 -04:00
David Zbarsky
b232701621 Bug 868312: Various dom rooting fixes, part 2 r=bz 2013-05-04 03:53:00 -04:00
David Zbarsky
ef70ce04b7 Bug 868312: Various dom rooting fixes r=bz 2013-05-04 03:52:57 -04:00
David Zbarsky
40805457eb Bug 868312: Root nsDOMClassInfo.cpp, part 2 r=bz 2013-05-04 03:51:53 -04:00
Phil Ringnalda
2512a51c3d Merge m-c to fx-team 2013-05-03 21:37:03 -07:00
Ms2ger
fe38e416ee Backout changesets f309dacf4010:be3cef4b69e3 for thread safety assertions on Windows and test failures on OSX. 2013-05-05 11:51:47 +02:00
Phil Ringnalda
5d3aa2950b Merge Birch and m-c 2013-05-03 19:38:56 -07:00
David Zbarsky
ea0da0d1b4 Bug 868312: Root part of nsDOMClassInfo.cpp r=bz 2013-05-03 14:53:32 -04:00
Gregor Wagner
7529ae4e8a Bug 867043 - Only send more contacts when the child needs them. r=reuben 2013-05-03 09:17:34 -07:00
Gregor Wagner
9f197cc0a6 Bug 867043 - Don't ask for more contacts more than once for the same chunk. r=reuben 2013-05-03 09:15:55 -07:00
Robert O'Callahan
42fc65ad46 Bug 866514. Part 2: Delay delivering getUserMedia stream result until the DOM object has asynchronously acquired the desired tracks. r=jesup 2013-05-03 17:07:37 +12:00
Ed Morley
62e49e6d1a Merge mozilla-central and birch 2013-05-03 13:35:02 +01:00
Ed Morley
9c3edb768e Merge latest green inbound changeset and mozilla-central 2013-05-03 13:31:39 +01:00
Doug Turner
19a5b733b0 Bug 868257 - watchPosition only sends one location r=stuart 2013-05-02 23:04:58 -07:00
Ryan VanderMeulen
c731ecf041 Merge birch to m-c. 2013-05-02 21:19:01 -04:00
Ryan VanderMeulen
dee43def22 Merge m-c to inbound. 2013-05-02 15:17:39 -04:00
Ryan VanderMeulen
ee6ba79e8b Merge m-c to birch. 2013-05-02 13:10:42 -04:00
Ryan VanderMeulen
a213f7964d Backed out changeset 1840b15583fd (bug 636564) for bustage.
CLOSED TREE
2013-05-02 08:33:54 -04:00
Phil Ringnalda
2807906ec3 Merge m-c to birch 2013-05-05 17:24:47 -07:00
Phil Ringnalda
dea3b15393 Merge m-c to birch 2013-05-05 12:25:12 -07:00
Fabrice Desré
f602313421 Bug 866272 - expose privileged access to mcc+mnc pair for last home network and roaming network r=gal 2013-05-02 18:37:51 -07:00
David Zbarsky
38f5841d1a Bug 866450 Part 7: Root some additional JS::Values found during review r=bz 2013-05-02 05:12:47 -04:00
David Zbarsky
9a3b3ff24d Bug 866450 Part 6: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:47 -04:00
David Zbarsky
b831ed3f23 Bug 866450 Part 4: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:46 -04:00
David Zbarsky
6557f4fec7 Bug 866450 Part 3: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:46 -04:00
David Zbarsky
a79bf02c5d Bug 866450 Part 2: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:46 -04:00
David Zbarsky
3f7cb5e49c Bug 866450 Part 1: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:45 -04:00
Olli Pettay
6aae4ec83f Bug 847597 - Paris binding for NotifyAudioAvailableEvent, r=peterv
--HG--
extra : rebase_source : 2fb578e3f0c7a60f95f3a2f13634f9b4c887d95f
2013-05-02 20:11:12 +03:00
Jason Smith
a446620df6 Bug 861958 - Crashtest for DataChannelConnection::Open crash. r=jesup 2013-05-01 20:44:28 -07:00
Doug Turner
8652a3b289 Bug 853732 - Improve Device Storage enumeration to avoid bad performance with some SD card. r=dylands r=dougt a=tef+ 2013-05-02 16:26:31 -07:00
Jed Parsons
0120431fca Bug 867847 - Fix busted navigator.id.get(). r=benadida 2013-05-01 18:29:41 -07:00
Stephen Pohl
c51a7b61fd Bug 636564 - Implement Lion style scrollbars on Mac OSX 10.7+. r=roc 2013-05-02 07:52:25 -04:00
Chia-hung Tai
cd69929256 Bug 867227 - Part 2: Add expiry date into nsIDOMMozMmsMessage. r=vyang 2013-05-01 09:22:52 -07:00
Boris Zbarsky
423aade28c Bug 865785 part 2. Fix rooting issues in JS-implemented webidl. r=mccr8 2013-05-04 21:44:10 -04:00
Boris Zbarsky
881f992823 Bug 865785 part 1. Go back to passing a JSContext* to the constructors for JS-implemented interfaces. r=mccr8 2013-05-04 21:43:58 -04:00
James Willcox
26839b9119 Bug 848652 - Implement ArrayBuffer version of AudioContext.createBuffer r=ehsan
--HG--
rename : content/media/webaudio/test/test_decodeAudioData.html => content/media/webaudio/test/test_mediaDecoding.html
2013-05-03 16:42:28 -04:00
Boris Zbarsky
fecb6d841d Bug 865969 part 9. Remaining miscellaneous rooting fixes in WebIDL bindings. r=ms2ger 2013-05-03 19:29:09 -04:00
Boris Zbarsky
05def15f98 Bug 865969 part 8. Fix rooting hazards in CallbackObject. r=ms2ger 2013-05-03 19:29:09 -04:00
Boris Zbarsky
2ead1e05ab Bug 865969 part 7. Fix rooting hazards in DOMJSProxyHandler.cpp. r=ms2ger 2013-05-03 19:29:09 -04:00
Boris Zbarsky
6baed10459 Bug 865969 part 6. Fix rooting hazards in BindingUtils.cpp. r=smaug 2013-05-03 19:29:08 -04:00
Boris Zbarsky
cf0d9ed876 Bug 865969 part 5. Root the id argument of WebIDL DefineInterface methods. r=smaug 2013-05-03 19:29:08 -04:00
Boris Zbarsky
545e5c8143 Bug 865969 part 4. Pass handles to WebIDL dictionary init. r=smaug,terrence 2013-05-03 19:29:08 -04:00
Boris Zbarsky
b8d3b00c5d Bug 865969 part 2. Better rooting in bindings for 'any' arguments. r=smaug 2013-05-03 19:29:07 -04:00
Boris Zbarsky
964948a44a Bug 865969 part 1. Better rooting in bindings for 'object' arguments, as well as for worker interface arguments passed as JSObject*. r=smaug 2013-05-03 19:29:07 -04:00
Matt Brubeck
eb1363b174 Back out changeset 1a0f522cf110 (bug 848652) because of assertion failures in MediaBufferDecoder.cpp
CLOSED TREE

--HG--
rename : content/media/webaudio/test/test_mediaDecoding.html => content/media/webaudio/test/test_decodeAudioData.html
2013-05-03 15:18:06 -07:00
Bobby Holley
d02fa60c1c Bug 829872 - Fix up tests that depend on contentDocument being non-null. r=imelven
These almost universally depend on some sort of special privileges, so I don't
think they're representative of any use-cases we might find on the web.
2013-05-03 14:47:10 -07:00
Chia-hung Tai
d24571cf23 Bug 867227 - Part 1: Interface changes. r=vyang, sr=mounir 2013-04-30 15:59:03 -07:00
Chiajung Hung
03375ee9b1 Bug 825110 - Part 3: WebRTC changes for B2G WebRTC video module. r=jesup 2013-05-02 08:00:12 -04:00
Chiajung Hung
aed738b705 Bug 825110 - Part 1: Camera changes for B2G WebRTC video module. r=mhabicher 2013-05-02 07:59:58 -04:00
Ryan VanderMeulen
a8fb2cf7cd Merge m-c to birch. 2013-05-02 07:37:56 -04:00
Nikhil Marathe
886ef9c101 Bug 863598 - SimplePush: Make PushService a module. r=dougt
--HG--
rename : dom/push/src/PushService.js => dom/push/src/PushService.jsm
2013-05-02 10:45:18 +05:30
Gene Lian
9cb4ea9193 Bug 865157 - B2G MMS: Receiving an MMS creates a redundant thread different from the one containing SMS (from the same sender). r=vicamo sr=mounir a=leo+ 2013-05-02 11:06:44 +08:00
Gregory Szorc
c6c1177427 Bug 863069 - Part 1: Sort lists in moz.build files; r=mshal 2013-05-03 09:54:45 -07:00
Mihai Sucan
a33f6aed4a Bug 855058 - Fix for intermittent browser/dom/tests/browser/browser_ConsoleAPITests.js | timer duration is positive; r=rcampbell 2013-04-30 21:35:07 +03:00
Boris Zbarsky
8b1681b1c5 Add test for bug 560072. 2013-05-02 14:38:20 -04:00
Boris Zbarsky
c15a45c218 Bug 742206 part 4. Start using the new Date stuff for HTMLInputElement.valueAsDate. r=smaug 2013-05-02 14:38:20 -04:00
Boris Zbarsky
386bc8fd74 Bug 742206 part 3. Implement type conversions for Date in WebIDL. r=smaug 2013-05-02 14:38:20 -04:00
Boris Zbarsky
1c19520dd5 Bug 742206 part 2. Implement WebIDL parser support for Date. r=smaug,khuey 2013-05-02 14:38:19 -04:00
Boris Zbarsky
7cd15f8898 Bug 742206 part 1. Introduce a simple mozilla::dom::Date for use in WebIDL bindings. r=smaug 2013-05-02 14:38:19 -04:00
Boris Zbarsky
b7ef07e12d Bug 860841. Hook up the proto chain of a WebIDL interface object to the interface object of its nearest ancestor interface that has one, as if these were ES6 classes. r=peterv 2013-05-02 14:38:19 -04:00
Eric Chou
f29b41001e Bug 866615 - Modify the nsDeviceStorage type from 'movies' to 'videos', r=dougt
From 19f4e6e369439a1626fbc69ac2dd72b63e56d397 Mon Sep 17 00:00:00 2001
2013-04-29 17:10:30 +08:00
Michael Wu
ed39602eed Bug 867703 - Remote default scale value, r=roc 2013-05-01 19:06:19 -04:00
Aryeh Gregor
04d3a14724 Bug 866059 - Don't implicitly convert to already_AddRefed in Codegen.py; r=bz 2013-04-22 14:21:23 +03:00
Ryan VanderMeulen
d069ab8fee Merge m-c to inbound. 2013-05-02 07:39:49 -04:00
Ed Morley
0e4101d53a Backed out changeset ad10907da2d4 (bug 866450) for B2G build failures 2013-05-02 11:58:05 +01:00
Ed Morley
581e7b778e Backed out changeset b514d768d793 (bug 866450) 2013-05-02 11:57:14 +01:00
Ed Morley
28ddd7f05a Backed out changeset 6e6a175fc36a (bug 866450) 2013-05-02 11:57:10 +01:00
Ed Morley
95e7cf2b1b Backed out changeset a1e877fa8d67 (bug 866450) 2013-05-02 11:57:07 +01:00
Ed Morley
e348bd3444 Backed out changeset 7c0ace2560c4 (bug 866450) 2013-05-02 11:57:01 +01:00
Ed Morley
37d84a3fe7 Backed out changeset e0b51717bb64 (bug 866450) 2013-05-02 11:56:57 +01:00
Ed Morley
6d6ba7db99 Backed out changeset b3df3d58f20c (bug 866450) 2013-05-02 11:56:54 +01:00
Ms2ger
ddb1f7c1ab Bug 866450 Part 8: Fix a missed nsContentUtils::WrapNative call on a CLOSED TREE 2013-05-02 12:10:11 +02:00
David Zbarsky
0e20dc3030 Bug 866450 Part 7: Root some additional JS::Values found during review r=bz 2013-05-02 05:12:47 -04:00
David Zbarsky
9316ac5bbc Bug 866450 Part 6: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:47 -04:00
David Zbarsky
0abf731e5e Bug 866450 Part 4: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:46 -04:00
David Zbarsky
b170dafbb3 Bug 866450 Part 3: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:46 -04:00
David Zbarsky
0566d3158e Bug 866450 Part 2: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:46 -04:00
David Zbarsky
350f4548ad Bug 866450 Part 1: Fix rooting hazards under content/ and dom/ r=bz 2013-05-02 05:12:45 -04:00
Andrew Sutherland
3f6d50b3a7 Bug 861196 - mozTCPSocket needs to translate nsISSLStatus error codes to something that can be exposed to content. r=bsmith, r=jst, a=blocking-b2g=tef+
sufficiently happy try build:
https://tbpl.mozilla.org/?tree=Try&rev=36edcbc1e65a
2013-05-02 03:51:54 -04:00
Boris Zbarsky
8cc9072bea Bug 861022 part 2. Root the global object in WebIDL prototype and interface object setup. r=peterv,terrence 2013-05-01 23:44:12 -04:00
Boris Zbarsky
2ca9989cd9 Bug 861022 part 1. Root the non-globals in WebIDL prototype and interface object setup. r=peterv,terrence 2013-05-01 23:44:11 -04:00
Boris Zbarsky
a2a1edabb4 Bug 866545. Remove the obsolete dom.enable_performance preference, so we can rely on things like performance.now() existing. r=smaug 2013-05-01 23:44:11 -04:00
Reuben Morais
c8c99446eb Bug 863704 - Make global-constructor and navigator-property categories respect a preference. r=jst 2013-05-01 18:44:44 -07:00
Stephen Pohl
15b6f78be0 Bug 636564 - Implement lion style scrollbars on Mac OSX 10.7+; r=roc 2013-05-02 10:58:00 -04:00
Ehsan Akhgari
a749080ffb Bug 865234 - Part 1: Add DOM bindings for the channel mixing attributes; r=roc 2013-04-27 18:44:50 -04:00
Ryan VanderMeulen
e53f5fad71 Merge m-c to inbound. 2013-04-30 22:02:09 -04:00
Ryan VanderMeulen
db7d219bfc Merge inbound to m-c. 2013-04-30 21:58:19 -04:00
Ryan VanderMeulen
404aef7cdd Merge the last PGO-green inbound changeset to m-c. 2013-04-30 21:49:23 -04:00
Ryan VanderMeulen
a940e46079 Backed out changesets c7937fb5f4bb and cf8db9b6bd61 (bug 862986) for bustage.
CLOSED TREE
2013-04-30 21:09:41 -04:00
Brian O'Keefe
9305158b76 Bug 862986 - Part 2: Migrate PROGRAM from Makefile.in to moz.build. r=gps 2013-04-30 20:46:10 -04:00
Matt Woodrow
ace055b629 Bug 865104 - Implement a BasicCompositor. r=nrc 2013-05-01 12:42:05 +12:00
Jim Blandy
e9b58eb4dc Bug 862531: Replace BaseProxyHandler::obj_toString with className. r=jorendorff 2013-04-30 14:44:50 -07:00
Gregor Wagner
f47d24f5d5 Bug 864695 - [Dialer] Numbers starting with 5 retrive wrong phone number suggestions. r=reuben.bmo, r=bent 2013-04-30 15:14:09 -04:00
Steve Fink
bb2447230f Bug 866432 - Replace AutoValueRooter with JS::Rooted<JS::Value> in gecko. r=smaug
--HG--
extra : rebase_source : 0897fc8f3968619185b754e13ca6119cb1c0f46d
2013-04-26 21:08:15 -07:00
Yoshi Huang
33f471b4a1 Bug 833215 - Part 2: Use the same style to parse. r=vicamo 2013-04-10 15:50:03 +08:00
Yoshi Huang
15b00e3b29 Bug 833215 - Part 1: rename getFoo to readFoo in ICCRecordHelper. r=vicamo 2013-04-10 15:32:17 +08:00
Ryan VanderMeulen
2f18537b41 Merge m-c to inbound. 2013-05-02 21:50:25 -04:00
Bobby Holley
a25082424e Bug 834699 - Stop checking dom.xbl_scopes. r=bz 2013-05-02 16:02:03 -07:00
Yoshi Huang
71e067fe59 Bug 835802 - Part 5: xpcshells tests. r=vicamo 2013-04-09 15:34:47 +08:00
Yoshi Huang
1fea409ded Bug 835802 - Part 4: Support more phonebook sets when updating ICC contact. r=vicamo 2013-04-08 16:03:35 +08:00
Yoshi Huang
404f9e2ef7 Bug 835802 - Part 3: Support more phonebook sets when adding ICC contact. r=vicamo 2013-04-08 15:50:01 +08:00
Yoshi Huang
0cdfa0a9f3 Bug 835802 - Part 2: Rename getFreeRecordId to findFreeRecordId. r=vicamo 2013-04-09 11:57:57 +08:00
James Willcox
9b1a0377f4 # ebe5edd8c0ac367c043437a674d4200cf4525757
Bug 848652 - Implement ArrayBuffer version of AudioContext.createBuffer r=ehsan

--HG--
rename : content/media/webaudio/test/test_decodeAudioData.html => content/media/webaudio/test/test_mediaDecoding.html
extra : rebase_source : 7b0926091743dd6cd17a0adee9a6d3c5181dfa4d
2013-05-03 16:42:28 -04:00
Andrew McCreight
a6d222f8e6 Bug 851639 - Allow JS implemented WebIDL to be registered on window.navigator. r=bz 2013-04-30 13:30:25 -07:00
Maria Grazia Alastra
d22c4f0c7b Bug 866081 - Change two labels and their names in plugins.properties, replacing "enabled" with "installed". r=bsmedberg 2013-04-30 15:12:54 -04:00
Terrence Cole
60ff037fa7 Bug 860050 - Remove JSMutableHandleObject typedef; r=bz,jonco 2013-04-16 16:20:44 -07:00
Terrence Cole
44f80e4b4d Bug 860050 - Remove JSRawObject typedef; r=jonco
--HG--
extra : rebase_source : 507e2dfe13d6a02317502cd7a4b2004c198d1bdf
2013-04-15 18:16:13 -07:00
Andrea Marchesini
cbfcaa4278 Bug 866679 - Convert DOMSVGZoomEvent to WebIDL. r=Ms2ger 2013-04-30 13:43:25 -04:00
Andrew McCreight
4f9af81b67 Bug 798165 - Make nsTimeout more of a real cycle collected class. r=smaug 2013-04-30 10:41:23 -07:00
Andrew McCreight
0bafa2c0cd Bug 866151 - Clean up usage of nsCycleCollector.h and nsCycleCollectorUtils.h. r=smaug,bsmedberg
--HG--
rename : xpcom/base/nsCycleCollector.h => xpcom/glue/nsCycleCollectionJSRuntime.h
2013-04-30 10:41:22 -07:00
Ryan VanderMeulen
5b6c12411d Merge birch to inbound. 2013-04-30 12:26:29 -04:00
Olli Pettay
f196f25680 Bug 866347 - Don't include jsapi.h in ErrorResult.h, r=waldo
--HG--
extra : rebase_source : e2b44338cf71a858b0a40c59a1af4e90620ed3aa
2013-04-30 17:04:52 +03:00
Ryan VanderMeulen
4f020afd30 Backed out changesets 64c7ba1d3d04 and 7e9d5bb4a9af (bug 862986) for test failures. 2013-04-30 10:08:38 -04:00
Brian O'Keefe
fd2b88f265 Bug 862986 - Part 2: Migrate PROGRAM from Makefile.in to moz.build. r=gps 2013-04-30 09:08:31 -04:00
Kevin Grandon
076af09c6f Bug 861496 - Replace #ifdef MOZ_SYS_MSG by a preference. r=fabrice 2013-04-30 09:01:46 -04:00
Ryan VanderMeulen
84fa605efe Merge m-c to birch. 2013-04-29 21:22:24 -04:00
Ryan VanderMeulen
d148f3b0f4 Merge m-c to inbound. 2013-04-30 08:09:43 -04:00
Ryan VanderMeulen
8090a13071 Merge m-c to inbound. 2013-04-29 13:09:28 -04:00
Andrea Marchesini
89da48b051 Bug 844462 - Update the nsIDOMMozBrowserFrame.mozbrowser docs to reflect the fact that mozbrowser is not exposed on HTMLFrameElement; r=ehsan
DONTBUILD since it's a comment only change.
2013-04-29 12:53:38 -04:00
Gabor Krizsanits
700b44eaf8 Bug 863140 - Remove GetInnerWindowInternal. r=bz 2013-04-29 17:34:16 +02:00
Marco Chen
6e78f8eb0c Bug 847255 - [Bluetooth/AudioChannel] A2DP failed to start session due to music resume too fast during SCO is disconnecting. r=baku 2013-04-29 10:47:15 +08:00
Ryan VanderMeulen
bbea653ac8 Merge m-c to birch. 2013-04-29 08:24:42 -04:00
Reuben Morais
1ce82926a7 Bug 860559 - Add pref field to ContactField and ContactAddress. r=gwagner sr=mounir
--HG--
extra : rebase_source : 098d9071232058bdf4a0f9547398eca9c4303106
2013-04-27 08:28:53 -07:00
Ryan VanderMeulen
06d74cdc31 Merge m-c to birch. 2013-04-26 23:16:34 -04:00
Reuben Morais
95c7713124 Bug 855556 - Test the cached branch of getAll more extensively. r=gwagner 2013-04-26 15:05:06 -07:00
Ryan VanderMeulen
80f2de9da8 Merge m-c to inbound.
--HG--
rename : mobile/android/base/resources/layout-large-v11/browser_toolbar_menu.xml => mobile/android/base/resources/layout-large-v11/browser_toolbar.xml
2013-04-26 16:46:46 -04:00
Reuben Morais
5a7819fed2 Bug 823999 - Disable diagnostic logging and add logging to PermissionPromptHelper. rs=gwagner 2013-04-26 12:50:56 -07:00
Jinho Hwang
aa3c4b0176 Bug 864684 - Prevent two way scrolling if it is not neccessary. r=vingtetun 2013-04-26 16:50:12 -04:00
Gregor Wagner
9903e812f9 Bug 866135 - Contacts: Fully integrate PhonenumberJS when we save contacts. r=reuben 2013-04-26 11:20:41 -07:00
Reuben Morais
0dd2cc2d87 Bug 862250 - Fix upgrade code. r=gwagner
--HG--
extra : rebase_source : a883f49cd07203734f5ec47d375b1602484bce6d
2013-04-26 10:29:04 -07:00
Ryan VanderMeulen
4209a6c698 Merge m-c to birch. 2013-04-26 13:00:21 -04:00
Rob Wood
3afbf2b758 Bug 811167 - Reduce failed test fallout by having WebTelephony tests cancel any existing calls at startup; r=jriffin 2013-04-26 10:44:26 -04:00
Ryan VanderMeulen
6f0cba2d2f Merge birch to m-c. 2013-04-26 08:00:07 -04:00
Vivien Nicolas
7c15cf7c26 Bug 847352 - Preload SystemMessageHandler.js. r=fabrice 2013-04-26 12:17:25 +02:00
Ryan VanderMeulen
2c125a2973 Backed out changeset d8c4ca787e39 (bug 865652) for xpcshell failures. 2013-04-26 11:30:40 -04:00
Ryan VanderMeulen
28fa6fef67 Backed out changeset cbbd94e6ab32 (bug 861496) for mochitest-2 orange. 2013-04-26 11:27:48 -04:00
Ms2ger
36143fb9dd Bug 864166 - Part d: Outparamdel nsGlobalWindow::GetWebBrowserChrome; r=mounir 2013-04-26 08:51:04 +02:00
Ms2ger
68ca8fd0a8 Bug 864166 - Part c: Outparamdel nsGlobalWindow::GetTreeOwner; r=mounir 2013-04-26 08:51:01 +02:00
Ms2ger
4555343ab0 Bug 864166 - Part b: Don't return nsresult from infallible helper functions in nsGlobalWindow; r=mounir 2013-04-26 08:50:54 +02:00
Ms2ger
05419b0b82 Bug 864166 - Part a: Handle window.alert(null) in the binding layer; r=mounir 2013-04-26 08:50:02 +02:00
Ms2ger
23b44f251c Bug 864165 - Outparamdel nsIWidget::GetSizeMode; r=tn 2013-04-26 08:49:47 +02:00
Ms2ger
2b71cc307b Bug 862446 - Use CallArgs in XPC_WN_Helper_{Call,Construct}; r=bholley 2013-04-26 08:48:40 +02:00
Ms2ger
c5d7d7efaf No bug - Sort the entries in Bindings.conf alphabetically. 2013-04-26 08:48:37 +02:00
Ms2ger
cc2268408a Bug 852135 - Part d: Move nsDOMAttributeMap to WebIDL bindings, remove CI and QS; r=bz 2013-04-26 08:48:27 +02:00
Ms2ger
3f5b6df45d Bug 864145 - Cleanup nsDOMTouchEvent's TouchList getters; r=smaug 2013-04-26 08:48:00 +02:00
Ms2ger
be0c00889e Bug 864509 - Make SVGStringList inherit from nsISupports; r=bz 2013-04-26 08:47:11 +02:00
Justin Lebar
7291a2f7f9 Bug 860799 - Part 2: Test that we give frames expecting a system message priority above vanilla BACKGROUND. r=khuey 2013-04-25 20:53:26 -04:00
Justin Lebar
37ebeead76 Bug 860799 - Part 1: Give frames expecting a system message priority at least BACKGROUND_PERCEIVABLE, so long as either haven't yet handled the system message or are holding the CPU/high-priority wake lock. r=khuey 2013-04-25 20:53:26 -04:00
Justin Lebar
9a39e4d0c4 Bug 844323 - Part 3: ProcessPriorityManager tests. r=nsm,khuey 2013-04-25 20:53:26 -04:00
Justin Lebar
7908e05f22 Bug 844323 - Part 2 (The Main Event): Move ProcesPriorityManager to the main process. r=bent,khuey 2013-04-25 20:53:26 -04:00
Justin Lebar
8af5a089ab Bug 844323 - Part 1: Move process preallocation logic out of ContentParent and into a new file, PreallocatedProcessManager. r=bent
Also make the PreallocatedProcessManager respond to pref changes.  This allows us to write a test involving the preallocated process.  Making this change was the main motivation for this patch; I moved the logic out of ContentParent because with the pref-watching code it was becoming unweildy.
2013-04-25 20:53:26 -04:00
Justin Lebar
3f8e52a07a Bug 844323 - Prelude part 4: Use 's' prefix on class-static variables, not 'g'. r=me 2013-04-25 20:53:26 -04:00
Justin Lebar
0e0722d49d Bug 844323 - Prelude part 3: Change ProcessPriorityManager's export directory. r=khuey
It was mozilla/dom/ipc/ before, but this changes it to mozilla/, which matches the class's namespace.
2013-04-25 20:53:26 -04:00
Ryan VanderMeulen
9ffb47392d Merge m-c to inbound. 2013-04-25 15:08:06 -04:00
Reuben Morais
376fc8de8a Bug 864556 - Expose database revision in Contacts API. r=gwagner sr=mounir
--HG--
extra : rebase_source : b36e856f9fd85155096f88cb0c8ad41038052a25
2013-04-25 10:15:47 -07:00