Gregor Wagner
2208694e4f
Bug 836157 - Contacts API: Remove unused indexes. r=bent
2013-01-30 17:17:07 -08:00
Ryan VanderMeulen
78acceb4cc
Backed out changeset bd0fc79d7a8b (bug 835548), changeset b8d1949eeb05 (bug 834999), changeset 3d90fdbf38a4 (bug 835596), and changeset ba7ffb02dc3f (bug 834371) for mochitest-4 failures on a CLOSED TREE.
2013-01-30 18:20:40 -05:00
Fabrice Desré
3c88efcceb
Bug 835548 - Refactor BrowserElementParent.js into a .js and .jsm, and speed up message registration. r=jlebar
...
--HG--
rename : dom/browser-element/BrowserElementParent.js => dom/browser-element/BrowserElementParent.jsm
2013-01-30 14:22:54 -08:00
Fabrice Desré
c14bc277cc
Bug 834999 - WebappsApplication.prototype.manifest getter takes 25-30ms on critical startup path r=ferjm
2013-01-30 14:22:54 -08:00
Fabrice Desré
f4102b9deb
Bug 835596: Speed up getAppByLocalId from O(n) to O(1) r=ferjm
2013-01-30 14:22:54 -08:00
Fabrice Desré
0fe4de93fa
Bug 834371 - Applying a packaged app update and immediately losing power to the phone - app update is lost r=julienw
2013-01-30 14:22:54 -08:00
Boris Zbarsky
e7f12d401a
Bug 829867. Unpref PaintRequest and Screen WebIDL bindings and remove some cruft from quickstubs. r=peterv
...
nsIDOMCharacterData and nsIDOMText quickstubs are not needed after bug 826703.
nsIDOMRect quickstubs haven't been needed since bug 824970 landed.
nsCSSPropertiesQS has been unused since bug 801083 at least.
The various includes being removed are either fully on WebIDL now or using WebIDL quickstubs.
2013-01-29 12:52:09 -05:00
Boris Zbarsky
e53ffbf3f0
Bug 824589. Convert XULElement to WebIDL. r=peterv
...
The assertions in nsINode and nsWrapperCache are to eagerly catch
failures to override those methods.
The classinfo change for XULTreeBuilder is needed because one of those
is returned via an nsIXULTemplateBuilder attribute on XULElement.
Alternately, I could mark it notflattened in Bindings.conf, but Enn
said he prefers this anyway.
The change to the QI impl in BindingUtils is needed because when
XPConnect converts an IID from C++ to JS it makes is an nsJSID, not an
nsJSIID. We've run into this before, sadly.
I removed "id" from nsIDOMXULElement because it's already on Element.
I suppose I could have left it there, but this seems cleaner.
The nsJSIID::HasInstance changes are needed to support XBL-implemented
interfaces. Sadly, this does mean that if the underlying object QIs
to something but we didn't put those props on the WebIDL we'll end up
testing true for instanceof but not exposing the props. I don't see
an obviously better way. We should work on killing off uses of
"instanceof someinterface".
The browser.js change is needed to avoid throwing exceptions during
browser-chrome tests that are now getting reported because our
swapFrameLoaders is no longer an XPConnect method.
2013-01-29 12:51:55 -05:00
Randell Jesup
f8ea191790
Bug 836294: Don't drop array of media devices on the floor r=bz
2013-01-30 10:56:10 -05:00
Boris Zbarsky
63503337e2
Bug 835417 part 4. Flag a bunch of DOM getters as [Pure]. r=peterv
2013-01-29 17:53:53 -05:00
Boris Zbarsky
ae32f60c9d
Bug 835417 part 2. Implement WebIDL parser and codegen support for marking things pure. r=peterv
2013-01-29 17:53:53 -05:00
Boris Zbarsky
8b394535e8
Bug 835417 part 1. Mark Node.namespaceURI as not throwing, since [Constant] things aren't allowed to throw (though we were not enforcing that). r=peterv
2013-01-29 17:53:52 -05:00
Boris Zbarsky
e15be64167
Back out bug 824589 (rev 22695cac3896) on suspicion of Ts regression
2013-01-29 17:18:06 -05:00
Boris Zbarsky
3ce404fddd
Back out bug 829867 (rev 2a0424e177c1) on suspicion of Ts regression
2013-01-29 17:17:37 -05:00
David Zbarsky
9807cc3a4c
Bug 835195: Remove nsIDOMSVGFitToViewBox r=bz
2013-01-29 17:11:45 -05:00
David Zbarsky
1b2502bb46
Bug 835195: Remove nsIDOMSVGTests r=bz
2013-01-29 17:11:45 -05:00
David Zbarsky
0d75da1695
Bug 832154: Convert SVGMarkerElement to WebIDL r=bz
2013-01-29 17:11:44 -05:00
David Zbarsky
e413b171e1
Bug 831561 - SVGClipPathElement should inherit from SVGElement r=longsonr
2013-01-29 17:11:44 -05:00
Randell Jesup
31ade0db43
Bug 818670: Enable AEC in PeerConnection, AGC/NoiseSuppression in gUM (w/bustage fix) r=derf
2013-01-29 11:55:09 -05:00
Terrence Cole
812eb2db9f
Bug 706885 - Rework Rooting APIs to preserve all available type information; r=billm
2013-01-28 18:25:23 -08:00
Ehsan Akhgari
e2c29ce2df
Merge the removal of global private browsing support
2013-01-29 13:13:58 -05:00
Ehsan Akhgari
32d278987e
Bug 817477 - Remove support for global private browsing mode; r=jdm,glandium
...
--HG--
rename : browser/app/profile/extensions/testpilot@labs.mozilla.com/modules/setup.js.in => browser/app/profile/extensions/testpilot@labs.mozilla.com/modules/setup.js
rename : browser/app/profile/extensions/testpilot@labs.mozilla.com/modules/tasks.js.in => browser/app/profile/extensions/testpilot@labs.mozilla.com/modules/tasks.js
2013-01-29 13:12:13 -05:00
Boris Zbarsky
d29ed299fd
Bug 829867. Unpref PaintRequest and Screen WebIDL bindings and remove some cruft from quickstubs. r=peterv
...
nsIDOMCharacterData and nsIDOMText quickstubs are not needed after bug 826703.
nsIDOMRect quickstubs haven't been needed since bug 824970 landed.
nsCSSPropertiesQS has been unused since bug 801083 at least.
The various includes being removed are either fully on WebIDL now or using WebIDL quickstubs.
2013-01-29 12:52:09 -05:00
Boris Zbarsky
24d3443115
Bug 824589. Convert XULElement to WebIDL. r=peterv
...
The assertions in nsINode and nsWrapperCache are to eagerly catch
failures to override those methods.
The classinfo change for XULTreeBuilder is needed because one of those
is returned via an nsIXULTemplateBuilder attribute on XULElement.
Alternately, I could mark it notflattened in Bindings.conf, but Enn
said he prefers this anyway.
The change to the QI impl in BindingUtils is needed because when
XPConnect converts an IID from C++ to JS it makes is an nsJSID, not an
nsJSIID. We've run into this before, sadly.
I removed "id" from nsIDOMXULElement because it's already on Element.
I suppose I could have left it there, but this seems cleaner.
The nsJSIID::HasInstance changes are needed to support XBL-implemented
interfaces. Sadly, this does mean that if the underlying object QIs
to something but we didn't put those props on the WebIDL we'll end up
testing true for instanceof but not exposing the props. I don't see
an obviously better way. We should work on killing off uses of
"instanceof someinterface".
The browser.js change is needed to avoid throwing exceptions during
browser-chrome tests that are now getting reported because our
swapFrameLoaders is no longer an XPConnect method.
2013-01-29 12:51:55 -05:00
Ed Morley
67d41c1674
Backout df75a87cce60 & 19e164f7d88d (bug 818670) for build bustage on a CLOSED TREE
2013-01-29 17:28:30 +00:00
Ryan VanderMeulen
2ac757469c
Merge the last PGO-green inbound changeset to m-c.
2013-01-29 09:36:20 -05:00
Edwin Casasola
2f218c35f1
Bug 835171 - get rid of remaining traces of nsPIDOMEventTarget; r=smaug
2013-01-29 11:46:07 +01:00
Olli Pettay
b2ee14044a
Bug 835503 - Remove nsCycleCollector::ShouldBeFreed/WasFreed, r=mccr8
2013-01-29 12:45:38 +02:00
Eric Chou
492be7deab
Bug 834551 - Insert BT_LOG at several important check points, r=gyeh
2013-01-29 18:37:51 +08:00
Eric Chou
3c923fe145
Bug 834551 - Replace 'LOG()' with 'BT_WARNING()' defined in BluetoothCommon.h for consistency, r=qdot
2013-01-29 18:37:51 +08:00
Eric Chou
dea952907e
Bug 834551 - Add Bluetooth debugging flag, r=qdot
2013-01-29 18:37:51 +08:00
Robert O'Callahan
5794556cad
Backing out 306003528e10, 335160d7855a, dfc9d5651175, 0559d630dd89, 03c3ae8323bd: bug 835195, bug 832154, bug 831561 ... in a CLOSED TREE
...
--HG--
rename : content/svg/content/src/SVGMarkerElement.cpp => content/svg/content/src/nsSVGMarkerElement.cpp
rename : content/svg/content/src/SVGMarkerElement.h => content/svg/content/src/nsSVGMarkerElement.h
2013-01-29 22:45:50 +13:00
Robert O'Callahan
f181913ea5
Bug 832788. Part 4: PrimitiveConversions should avoid implicit narrowing casts to avoid compiler warnings; make them explicit. r=bzbarsky
...
--HG--
extra : rebase_source : 276f7834714ded347bd9d368258bc049f24787c4
2013-01-29 16:14:40 +13:00
Robert O'Callahan
7a8e466a9f
Bug 833542. Make scrollWidth/scrollHeight for overflow:visible match what they would be for overflow:hidden on the same element. r=mats
...
--HG--
extra : rebase_source : 42d1018cf48caf1eec4bc9251ec1cb3eee30001b
2013-01-29 14:38:22 +13:00
David Zbarsky
615ad95018
Bug 835195: Remove nsIDOMSVGFitToViewBox r=bz
2013-01-29 03:50:57 -05:00
David Zbarsky
dfdd7e4eb1
Bug 835195: Remove nsIDOMSVGTests r=bz
2013-01-29 03:50:56 -05:00
David Zbarsky
533fdcbeab
Bug 832154: Convert SVGMarkerElement to WebIDL r=bz
2013-01-29 03:50:56 -05:00
David Zbarsky
ea77733d5d
Bug 831561 - SVGClipPathElement should inherit from SVGElement r=longsonr
2013-01-29 03:50:56 -05:00
Chris Jones
b8c2de3e54
Bug 835641: Don't SendUpdateDimensions() when they haven't changed. r=roc
2013-01-28 23:49:38 -08:00
Gina Yeh
9ae2cfbdcb
Bug 811569 - Patch 4: Remove asynchronous function GetProperty , r=echou
2013-01-29 14:52:58 +08:00
Gina Yeh
86d8eef233
Bug 811569 - Patch 3: Cleanup for DOMRequest related checking and do_GetService checking, r=echou
2013-01-29 14:52:48 +08:00
Gina Yeh
b63992289e
Bug 811569 - Patch 2: Support array of nsString in SetJsObject, r=echou
2013-01-29 14:52:39 +08:00
Gina Yeh
f1698ce19d
Bug 811569 - Patch 1: Remove unused files in bluetooth, r=echou
2013-01-29 14:52:30 +08:00
Phil Ringnalda
b48b7c8bbd
Back out c5238879470f and b3cabb259af7 (bug 830099) for bustage
2013-01-28 22:36:59 -08:00
Boris Zbarsky
6f7ea23bae
Always build RTCIceServer.webidl, since it doesn't rely on WebRTC machinery, and is needed in DummyBinding. Followup for bug 830099.
2013-01-29 01:02:29 -05:00
Boris Zbarsky
daed28912a
Bug 830099. Flag WebIDL dictionaries and callbacks with some information indicating whether we need main-thread and worker codegen for them and then use that information to skip unneccessary codegen. r=peterv
2013-01-28 23:30:17 -05:00
Boris Zbarsky
065b213ef0
Bug 795896. Speed up UnwrapProxy, since we know what we have there is either an Xray or our proxy. r=peterv
2013-01-28 23:29:25 -05:00
Jason Smith
4876d9175d
Bug 822197 - Crashtest for assertion failure: cb_hdr and crash fim_process_event/FIM_DEBUG. r=ehugg
2013-01-28 10:38:06 -08:00
Jet Villegas
ff15244009
Bug 832696 - gfx gets prefs in the plugin process r=jmuizelaar
2013-01-25 00:22:16 -05:00
Randell Jesup
eb99b87929
Bug 818670: Enable AEC in PeerConnection, AGC/NoiseSuppression in gUM r=derf
2013-01-29 11:55:09 -05:00
Jeff Muizelaar
e3c696fc3e
Bug 835533. Avoid adding an ambiguous TextureInfo type. r=snorp
...
TextureInfo conflicts with TextureInfo from the layers refactor.
It's not used in many places so just avoid the typedef
--HG--
extra : rebase_source : 2edffde4c50a228637a4f7ad29a354f406fa5f0c
2013-01-29 11:24:04 -05:00
Ryan VanderMeulen
eab06717bc
Merge m-c to inbound.
2013-01-29 10:50:01 -05:00
Boris Zbarsky
d96de5c466
Fix comment. Followup for bug 834877. DONTBUILD
2013-01-29 10:31:34 -05:00
Boris Zbarsky
90f40b8d5e
Bug 834877 part 2. Start using DOMString as the return value for strings. r=peterv
2013-01-29 09:42:14 -05:00
Boris Zbarsky
85ef1adf0d
Bug 834877 part 1. Add a DOMString struct to use for binding return values. r=peterv
2013-01-29 09:42:14 -05:00
Boris Zbarsky
42d12beb79
Bug 829252 part 4. Turn on the EventTarget quickstubs. r=peterv
2013-01-29 08:44:01 -05:00
Boris Zbarsky
1697e0d7f0
Bug 829252 part 3. When wrapping things with an nsISupports in XPCWrappedJS for WebIDL callback interfaces, use the aggregated version. r=peterv
2013-01-29 08:44:01 -05:00
Boris Zbarsky
f9bc81a8be
Bug 829252 part 2. Make nsGlobalWindow inherit from dom::EventTarget and ensure that all the things that inherit from it correctly QI to it. r=peterv
2013-01-29 08:44:01 -05:00
Boris Zbarsky
625b086463
Bug 829252 part 1. Change nsGlobalWindow to use nsIDOMEventTarget as the canonical isupports instead of nsIScriptGlobalObject. We'll need this to be able to cast to it properly in binding code. r=peterv
2013-01-29 08:44:01 -05:00
Boris Zbarsky
625d2a1608
Bug 829072 part 3. Move the event handlers that are shared by HTMLBodyElement, HTMLFramesetElement, and Window onto a WindowEventHandlers interface that can be on the RHS of 'implements'. r=peterv
2013-01-29 08:44:00 -05:00
Boris Zbarsky
2f1f5999b7
Bug 829072 part 2. Move the event handlers that are shared by HTMLElement and Document onto a NodeEventHandlers interface that can be on the RHS of 'implements'. r=peterv
2013-01-29 08:44:00 -05:00
Boris Zbarsky
4bf1cbd45b
Bug 829072 part 1. Move the event handlers that are shared by HTMLElement, Document, and Window onto a GlobalEventHandlers interface that can be on the RHS of 'implements'. r=peterv
2013-01-29 08:44:00 -05:00
Boris Zbarsky
126e2f75e3
Bug 834785. Make sure to not ask the JS engine for return values in toplevel scripts, so it'll be able to ion-compile them as needed. r=bholley
2013-01-29 08:44:00 -05:00
Boris Zbarsky
de6a67d7d0
Bug 830099. Flag WebIDL dictionaries and callbacks with some information indicating whether we need main-thread and worker codegen for them and then use that information to skip unneccessary codegen. r=peterv
2013-01-28 23:30:17 -05:00
Andrea Marchesini
cb99ce070f
Bug 835612 - Fix nsVolumeService to use strings better, r=jlebar
2013-01-29 14:27:46 +01:00
Ehsan Akhgari
558f5d83d3
Backed out changeset 19b9f064d8eb (bug 795896) because of build bustage
2013-01-28 23:51:11 -05:00
Ehsan Akhgari
532c5822ab
Backed out changeset 32786d29daf8 (bug 830099) because of build bustage
2013-01-28 23:51:03 -05:00
Boris Zbarsky
c03fdb9103
Bug 830099. Flag WebIDL dictionaries and callbacks with some information indicating whether we need main-thread and worker codegen for them and then use that information to skip unneccessary codegen. r=peterv
2013-01-28 23:30:17 -05:00
Boris Zbarsky
28ae5bfe10
Bug 795896. Speed up UnwrapProxy, since we know what we have there is either an Xray or our proxy. r=peterv
2013-01-28 23:29:25 -05:00
Borja Salguero
d9bbef8e00
Bug 828861 - B2G PhoneNumberJS: Don't apply network mcc to to SMS in roaming scenario. r=vyang
2013-01-28 18:11:22 -08:00
Dave Hylands
e094bc22f1
Bug 835408 - nsVolume NameStr and MountPointStr noe return nsCString rather than ptr to freed memory. r=jlebar
2013-01-28 14:34:30 -08:00
Peter Van der Beken
105d61cacc
Fix for bug 715156 (JS code no longer work for select options as array in a Greasemonkey script (index and name setters don't really work via XrayWrapper)). r=bz.
...
--HG--
extra : rebase_source : 2ced75b6d49dbab5afe9a6ce7c322bf18a634026
2013-01-14 11:29:48 +01:00
Peter Van der Beken
bfc9de7860
Fix for bug 816088 (webIDL bindings try to extract nsISupports from the global object in static properties in workers). r=bz.
...
--HG--
extra : rebase_source : 5668d9e01bff0fe7831d98018428856e5940a620
2012-12-03 17:07:49 +01:00
Boris Zbarsky
9109720d1a
Bug 822470 part 7. Use new callback codegen for conversion to and from JS. r=peterv
...
NodeFilter, EventListener, and DOMTransaction will be updated to use the new codegen once we've fixed the consumers.
2013-01-28 08:34:31 -05:00
Boris Zbarsky
daf569d68b
Bug 822470 part 6. Hook up callback interface codegen. r=peterv
2013-01-28 08:34:30 -05:00
Boris Zbarsky
bae0d6d7ef
Bug 822470 part 5. Refactor callback codegen so it can be reused for callback interfaces too. r=peterv
2013-01-28 08:34:30 -05:00
Boris Zbarsky
6db46bbe9e
Bug 822470 part 4. Expose the concept of "single operation interface" in the WebIDL data model. r=peterv
2013-01-28 08:34:30 -05:00
Boris Zbarsky
6065a469be
Bug 822470 part 3. Include headers as needed for callback interfaces. r=peterv
2013-01-28 08:34:30 -05:00
Boris Zbarsky
8b10dd30ec
Bug 822470 part 2. Create a CallbackInterface helper class. r=peterv
...
--HG--
rename : dom/bindings/CallbackFunction.h => dom/bindings/CallbackInterface.h
2013-01-28 08:34:30 -05:00
Boris Zbarsky
c71174d98b
Bug 822470 part 1. Factor out the code that callback functions and callback interfaces will be able to share into a CallbackObject class. r=peterv
...
--HG--
rename : dom/bindings/CallbackFunction.cpp => dom/bindings/CallbackObject.cpp
rename : dom/bindings/CallbackFunction.h => dom/bindings/CallbackObject.h
2013-01-28 08:34:29 -05:00
Ed Morley
4083c0c3a6
Backout 3985cb4da6b6, 55ab9f026dc4, f7ead00b7654 and e2108ea96ae5 for a variety of build failures on a CLOSED TREE
2013-01-28 12:19:12 +00:00
Andrea Marchesini
aed507c9dd
Bug 828283 - Apps playing sound should not be muted when the screen is put to sleep., r=sicking
2013-01-28 12:47:18 +01:00
Gina Yeh
58be7621b3
Bug 828798 - [Bluetooth] [HFP] No redundant +CIEV commands are sent to bluetooth headset, r=echou
2013-01-28 19:28:51 +08:00
Eric Chou
2ae028d66d
Bug 834551 - Insert BT_LOG at several important check points, r=gyeh
2013-01-28 19:23:15 +08:00
Eric Chou
1aa08b1878
Bug 834551 - Replace 'LOG()' with 'BT_WARNING()' defined in BluetoothCommon.h for consistency, r=qdot
2013-01-28 19:23:12 +08:00
Eric Chou
f0e65f18cb
Bug 834551 - Add Bluetooth debugging flag, r=qdot
2013-01-28 19:23:02 +08:00
Ed Morley
19dd19ed37
Backout f3c145bd1dd2 & 5075690572a9 for OS X startup failures
2013-01-28 11:08:21 +00:00
Ed Morley
97e87e834f
Backout aad75c7c49c5:2addf5bd1730 (bug 830164) for B2G marionette failures on a CLOSED TREE
2013-01-28 10:44:15 +00:00
Peter Van der Beken
18764acd4b
Fix for bug 715156 (JS code no longer work for select options as array in a Greasemonkey script (index and name setters don't really work via XrayWrapper)). r=bz.
...
--HG--
extra : rebase_source : 6bc420bd917e00a49dc5f6f3de13ff9e290c9580
2013-01-14 11:29:48 +01:00
Peter Van der Beken
70a2f7c413
Fix for bug 816088 (webIDL bindings try to extract nsISupports from the global object in static properties in workers). r=bz.
...
--HG--
extra : rebase_source : 68e5630591f6209e2af9c5cd2321fed8edd3de24
2012-12-03 17:07:49 +01:00
Yoshi Huang
9bb283111a
Bug 830164 - Part 6: update xpcshell tests for SST. r=vicamo
2013-01-28 10:57:30 +08:00
Yoshi Huang
9f0687da89
Bug 830164 - Part 5: remove SST from iccInfo. r=vicamo
2013-01-25 11:09:22 +08:00
Yoshi Huang
75f42edad4
Bug 830164 - Part 4: Update GPS. r=dougt
2013-01-10 14:57:49 +01:00
Yoshi Huang
2d2be1093a
Bug 830164 - Part 3: update read IMSI. r=vicamo
2013-01-11 10:20:12 +01:00
Yoshi Huang
8bf917e2d4
Bug 830164 - Part 2: rename icc to iccInfo. r=vicamo
2013-01-10 17:18:54 +01:00
Yoshi Huang
17568b0bc1
Bug 830164 - Part 1: IDL Changed. r=vicamo
2013-01-10 14:20:37 +01:00
Patrick Wang
b063b38fbc
Bug 829486 - Fire documentfirstpaint every time a window created. r=jlebar
2013-01-28 15:44:38 +08:00
Kyle Machulis
8a6e862a23
Bug 777271 - Re-implement nsIDOMCallEvent using event implementation codegen. r=bent,vicamo,hsinyi
2013-01-28 15:39:50 +08:00
Bill McCloskey
fb226611b8
Bug 751618 - Zone renaming part 7 (r=jonco)
2013-01-27 13:51:41 -08:00
Bill McCloskey
fbf07135dc
Bug 751618 - Zone renaming part 2 (r=jonco)
2013-01-27 13:51:35 -08:00
Bill McCloskey
0b41061a2c
Bug 751618 - Add js/GCAPI.h (r=terrence)
2013-01-27 12:35:12 -08:00
Vicamo Yang
31182e3e19
Bug 802506: add marionette test case for getting IMEI. r=ferjm
2013-01-27 15:44:25 +08:00
Justin Lebar
ceb8f7b008
Bug 834059 - Send processses into the foreground when they first launch, so they don't get killed quite so quickly. r=cjones
...
This patch also sends the preallocated process into the background immediately after it's launched.
2013-01-26 16:14:01 -05:00
Sunny
2058bc86f6
Bug 831533 - Show the enabled/disabled/blocklisted state of plugins in about:plugins. r=bsmedberg
2013-01-26 12:59:31 -05:00
Reuben Morais
e901a5609b
Bug 793204 - Add remove() API to PermissionSettings. r=sicking
2013-01-26 12:56:23 -05:00
EKR
d005034d5d
Bug 816780 - Merge all incoming m-lines into one MediaStream. r=jesup,abr
2013-01-24 08:34:18 -08:00
Doug Turner
73eb8b13ef
Bug 834595 - Factor stat() such that there are 3 independent methods. r=sicking
...
--HG--
rename : dom/devicestorage/test/test_stat.html => dom/devicestorage/test/test_freeSpace.html
rename : dom/devicestorage/test/test_stat.html => dom/devicestorage/test/test_usedSpace.html
2013-01-25 11:05:24 -08:00
Jose Antonio Olivera Ortega
97afdee067
Bug 827280 - Part 4: RIL. r=philikon a=tef+
2013-01-25 19:45:23 +01:00
Jose Antonio Olivera Ortega
1cee368d8a
Bug 827280 - Part 3: MobileConnection. r=philikon a=tef+
2013-01-25 19:45:19 +01:00
Jose Antonio Olivera Ortega
28fdf7755d
Bug 827280 - Part 2: DOMEvent. r=philikon a=tef+
2013-01-25 19:45:16 +01:00
Jose Antonio Olivera Ortega
7baa538701
Bug 827280 - Part 1: IDLs. r=sicking a=tef+
2013-01-25 19:45:12 +01:00
Benoit Jacob
8602c485b1
Bug 834674 - IDBTransaction: no need for custom CC code to traverse/unlink arrays of pointers - r=smaug
2013-01-25 08:42:03 -05:00
Matt Brubeck
3a9e43ba6d
Bug 833663 - Set MOZ_SOURCE_TOUCH for simulated mouse events in Gonk [r=cjones]
2013-01-24 06:53:39 -08:00
Raymond Lee
72b1eac15e
Bug 806723 - Port plugin test_privatemode.xul to the new per-tab PB APIs r=jdm
...
--HG--
rename : dom/plugins/test/mochitest/test_privatemode.xul => dom/plugins/test/mochitest/test_privatemode_perwindowpb.xul
extra : rebase_source : 482bddf5f3af6be0aa92ef53783e2153860f5478
2013-01-25 13:59:54 +08:00
Adam Roach [:abr]
fd861268ea
Bug 834153 - Mochitest. r=ekr
2013-01-24 12:11:08 -06:00
Adam Roach [:abr]
5b77951d56
Bug 834153 - Queue CreateAnswer State Checks, remove extraneous _executeNext calls. r=jesup
2013-01-24 21:44:30 -06:00
James Willcox
6dc79f9f2d
Bug 768000 - Fix up the mutex handling in the prior patch r=blassey
2013-01-25 11:13:40 -05:00
Andrea Marchesini
132caaa2c6
Bug 832665 - Switching back and forth between the music app and FM radio (using home key) causes some unexpected behavior., r=mchen
2013-01-25 16:12:17 +01:00
Ed Morley
e17c651da5
Backed out changeset a0c4559f5d2e for cpp unitest orange
2013-01-25 13:36:17 +00:00
Andrea Marchesini
c7f7db7502
Bug 832665 - Switching back and forth between the music app and FM radio (using home key) causes some unexpected behavior., r=mchen, a=tef+
2013-01-25 13:24:08 +01:00
Chuck Lee
94c08318bb
Bug 831628 - 0005. Test case for Event Download Command : Idle Screen Available. r=yoshi
2013-01-24 15:34:32 +08:00
Chuck Lee
6ee6775073
Bug 831628 - 0004. Change worker name. r=yoshi
2013-01-24 15:34:30 +08:00
Chuck Lee
44dcd0f2f8
Bug 831628 - 0003. Mark event as supported. r=yoshi
2013-01-24 12:15:11 +08:00
Chuck Lee
40e29d425b
Bug 831628 - 0002. Handle event. r=yoshi
2013-01-24 12:15:09 +08:00
Chuck Lee
df3930b7dd
Bug 831628 - 0001. Add event object. r=yoshi. sr=sicking
2013-01-25 11:02:06 +08:00
Bobby Holley
29dd20ec7d
Bug 833856 - Handle errors better in EvaluateString. r=bz
...
This bug happens when we take the !useSandbox path. Basically, when the code
throws, we can end up with garbage in *aRetValue while still returning true
from EvaluateString. It looks like the convention is for these kind of eval
functions to return success even for invalid code, so lets just make sure we
check things a bit better.
This crashtest is kind of half-baked in the sense that it doesn't actually
crash without the rest of the patch. But the testcase here involves a lot of
undefined behavior (what ends up getting left in *aRetValue) during a call
to window.open (which spins the event loop, etc). I already sunk about half
an hour into trying to make it crash, so I'm just going to go with this for
now.
2013-01-25 11:17:40 +01:00
Gene Lian
a664f1fec9
Bug 833060 - Need a way to know whether NITZ is available or not. r=philikon a=tef+
2013-01-25 18:06:24 +08:00
Patrick Wang
47017b33bf
Bug 833277 - Tell if we are on CDMA network r=vicamo
2013-01-22 19:01:04 +08:00
Sotaro Ikeda
c511765584
Bug 833521 - forward "recording-device-events" event to parent process, r=dougt
2013-01-24 21:45:36 -05:00
Boris Zbarsky
505b2f34e8
Bug 832899. Make sure our canonical isupports matches what various consumers expect. r=smaug
2013-01-24 21:27:55 -05:00
Fabrice Desré
22de2b7b34
Bug 833659 - REINSTALL_FORBIDDEN error isn't triggering when installing a packaged app with a mini-manifest off of X origin when a hosted app was already installed from X origin r=ferjm
2013-01-24 18:24:17 -08:00
Fabrice Desré
7c1e05c8aa
Bug 833587 - Updating a packaged app to a new version that is too large to fit in the phone fails, but the original packaged app is lost (no longer launches) r=ferjm
2013-01-24 18:24:17 -08:00
Fabrice Desré
c69aef2485
Bug 832408 - Notifications stick around after a failed 3rd party app update r=ferjm
2013-01-24 18:24:17 -08:00
Fabrice Desré
7ca1bdc2ea
Bug 831644 - Uninstalling an app while it's currently being downloading leaves Gaia's homescreen and download progress in a corrupted, out of sync state with the webapps registry r=julienw
2013-01-24 18:24:17 -08:00
Aaron Klotz
75031da002
Bug 828034 - Fix crash when PluginModuleParent::CleanupFromTimeout runs before channel error notification. r=bsmedberg
2013-01-24 21:10:02 -05:00
Ryan VanderMeulen
9e48ac7478
Merge m-c to inbound.
2013-01-24 21:09:59 -05:00
Vicamo Yang
4d664fbccf
Bug 833908: explicitly export spn related attributes in nsIICCRecords. r=allstars.chh
2013-01-25 10:01:26 +08:00
Jan-Ivar Bruaroey
e473c4cd28
Bug 834463: Corrected RTCConfiguration format. r=jst
2013-01-24 17:58:29 -05:00
Ben Turner
65692dc256
Bug 831307 - Allow invalid file handles to not crash child processes. r=cjones.
2013-01-24 17:10:39 -08:00
Nathan Froyd
12dbb0cbfd
Bug 834263 - consolidate ClonedMessageData unpacking code; r=smaug
2013-01-24 11:24:19 -05:00
Gene Lian
8c1e40b864
Bug 830425 - Phone takes too long to wake up for incoming phone calls (acquire and release wake locks in RadioInterfaceLayer.js). r=philikon a=tef+
2013-01-24 16:35:50 +08:00
Ryan VanderMeulen
2c5c88c10b
Backed out changeset 58209cc0ae14 (bug 833521) for build bustage.
2013-01-24 15:23:53 -05:00
Sotaro Ikeda
1eb0328d2c
Bug 833521 - forward "recording-device-events" event to parent process, r=dougt
2013-01-24 14:51:03 -05:00
James Willcox
5c231dd02f
Bug 768000 - Don't race when destroying plugin audio tracks on Android r=blassey
...
--HG--
extra : rebase_source : 5e15ec8e1132cbc862b3f7f69555432beb0b9169
2013-01-23 15:18:36 -05:00
Bobby Holley
ca53b9e294
Bug 833412 - Remove AddBinding/RemoveBinding and remove dead code. r=bz
2013-01-24 18:45:50 +01:00
Ryan VanderMeulen
d1d2c01489
Merge m-c to inbound.
2013-01-25 12:32:22 -05:00
Ehsan Akhgari
b3849129ac
Backed out changeset 70baa7e07838 (bug 833915) since one day has passed
2013-01-24 11:12:24 -05:00
Ehsan Akhgari
c30aff9acb
Bug 833915 - Turn off PGO and LTCG on Windows Nightly for one day; r=glandium
2013-01-23 16:13:50 -05:00
Gregor Wagner
b7f298b112
Backout Bug 793204 for installation failures. r=me
2013-01-23 10:21:13 -08:00
Ryan VanderMeulen
f4b6720f8f
Backed out changesets ed1ef43ce9af, 3d2b3f7eac93, and 8fc6d7d32482 (bug 827831) for Marionette failures.
2013-01-24 07:48:07 -05:00
Albert Perez
535e3870ae
Bug 827198 - Avoid errors when time or timezone is changed. r=philipp
2013-01-24 07:22:47 -05:00
Philipp von Weitershausen
6edeccb0c9
Bug 823010 - Fix test cases. r=jgriffin
2013-01-23 17:40:48 +08:00
Philipp von Weitershausen
fcd6c80885
Bug 823010 - B2G SMS: We should not ack reception when there's a storage error. r=vicamo, ferjm a=blocking-b2g
2013-01-23 17:40:45 +08:00
Edgar Chen
6b8c8e3fb4
Bug 809726 - Part 3: Exporting contacts to SIM. r=allstars.chh
2012-12-28 11:11:36 +08:00
Edgar Chen
75a4d1f061
Bug 809726 - Part 2: Support update command. r=allstars.chh
2013-01-21 18:04:27 +08:00
Edgar Chen
ae3ddc99da
Bug 809726 - Part 1: Add new interface in nsIRadioInterfaceLayer. r=allstars.chh
2013-01-16 19:02:30 +08:00
Reuben Morais
8bc1bb2e5a
Bug 793204 - Add remove() API to PermissionSettings. r=sicking
2013-01-22 23:34:26 -08:00
Chuck Lee
2f92a16449
Bug 831702 - 0007.Test case for STK Terminal Response. r=yoshi
2013-01-23 11:42:44 +08:00
Chuck Lee
413ee6b21f
Bug 831702 - 0006.Test case for STK Event Download - Location Status. r=yoshi
2013-01-23 11:42:42 +08:00
Chuck Lee
7118716eeb
Bug 831702 - 0005.Add worker which supports outgoingIndex in xpcshell ril_worker_icc test. r=yoshi.
2013-01-23 11:42:41 +08:00
Chuck Lee
d769d64c76
Bug 831702 - 0004.Fix data not set while its value is zero. r=yoshi.
2013-01-23 11:42:39 +08:00
Chuck Lee
9a7c574e05
Bug 831702 - 0003.Fix data member name typo. r=yoshi.
2013-01-23 11:42:37 +08:00
Chuck Lee
5197973f51
Bug 831702 - 0002.Calculate data size by data size calculation function. r=yoshi.
2013-01-23 11:42:35 +08:00
Chuck Lee
dba48d51a9
Bug 831702 - 0001.Add data size calculation function. r=yoshi.
2013-01-23 11:42:33 +08:00
Siddartha P
1930e5b065
Bug 827831 - Part 3: [B2G STK]: Marionette test case. r=allstars.chh
2013-01-09 17:13:16 +01:00
Siddartha Pothapragada
a35f11e5e2
Bug 827831 - Part 2: [B2G STK]: Support variable timeout for GET INKEY. r=allstars.chh
...
From d4f98c2a3b0debfd13747602104a7530b0f999e9 Mon Sep 17 00:00:00 2001
---
dom/system/gonk/ril_worker.js | 7 +++++++
1 file changed, 7 insertions(+)
2013-01-09 05:49:47 -08:00
Siddartha Pothapragada
1a419a2acd
Bug 827831 - Part 1: [B2G STK]: Decode Comprehension-TLV tag Duration, to support variable timeout for GET INKEY. r=allstars.chh sr=sicking
...
From 8ae86db8de8199a9fe77c672ed7ace8ec4e26c2d Mon Sep 17 00:00:00 2001
---
dom/icc/interfaces/SimToolKit.idl | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
2013-01-22 18:21:32 -08:00
Bobby Holley
5de758ce91
Bug 832041 - Remove nsJSContext::CompileEventHandler and move consumers to nsJSUtils::CompileFunction. r=bz
2013-01-23 07:12:50 +01:00
Kartikaya Gupta
74224b0ffa
Bug 828126 - Enable ifdef'd code on Fennec now that dependent bugs have been fixed. r=avih
2013-01-23 00:52:19 -05:00
Doug Turner
36281bdf04
Backout part of Bug 726593 (cset 48918f0df283) that uses bug 757511. r=bsmith
2013-01-22 21:25:38 -08:00
Phil Ringnalda
a5faa58c98
Back out 30b9fbf49c01:c7fc23428c3b (bug 823010) for being rotted by 8 hours
...
--HG--
extra : rebase_source : 0dde2f719d4963113b578d07a17a8001fb4e0f63
2013-01-22 21:02:58 -08:00
Shian-Yow Wu
a8f1c1e23c
Bug 817985 - mobile data connection is not disconnected when we are connected to Wifi network. r=vicamo
2013-01-23 12:05:34 +08:00
Patrick Wang
553746677d
Bug 832925 - Use DeactivateDataCallByType to close SUPL connection. r=dougt
2013-01-21 19:30:54 +08:00
Philipp von Weitershausen
f871383144
Bug 823010 - Fix test cases. r=jgriffin
2013-01-22 18:06:23 -08:00
Philipp von Weitershausen
b82feffcbb
Bug 823010 - B2G SMS: We should not ack reception when there's a storage error. r=vicamo, ferjm a=blocking-b2g
2013-01-18 16:30:24 -08:00
Ehsan Akhgari
94b2981ab9
Bug 833631 - Unprefix mozAudioContext; r=roc
...
--HG--
extra : rebase_source : 3c477a97ea842a806f6fad6f5c3a81d6e50b27c3
2013-01-22 20:12:21 -05:00
Gina Yeh
af7eb8c24b
Bug 827230 - [Bluetooth] [Hfp] Support feature 'Query Operator Selection' (AT+COPS?), r=echou, a=nonlibxul
2013-01-23 09:22:08 +08:00
Ryan VanderMeulen
736ce65b82
Merge m-c to inbound.
2013-01-23 18:30:46 -05:00
Olli Pettay
e5d7c86f9b
Bug 822849 - Don't run CC/GC timers during shutdown, r=mccr8
...
--HG--
extra : rebase_source : 173e02106457b6867db8c4cf734a93366f4b31dd
2013-01-22 21:17:48 +02:00
Fabrice Desré
45de5634a7
Bug 821288 - Strange behavior when installing multiple hosted apps from the same origin r=julienw a=nonlibxul
2013-01-21 11:13:35 -08:00
Gina Yeh
1a8309d87f
Bug 823346 - [Bluetooth] [Hfp] Updating status change of Battery level, r=echou, a=nonlibxul
2013-01-22 13:53:28 +08:00
Bobby Holley
ff3e20df9d
Bug 832435 - Fix compartment handling for EvaluteString and javascript: uris. r=bz
2013-01-21 12:56:28 +01:00
Myk Melez
4333c19fe2
bug 833531 - define installOrigin in argument to aApp parameter of DOMApplicationRegistry.downloadPackage(); r=fabrice
...
---
dom/apps/src/Webapps.jsm | 1 +
1 file changed, 1 insertion(+)
2013-01-22 14:01:42 -08:00
Mike Habicher
c4cc702b09
Bug 819835 - add support for setting the EXIF DateTime field, r=sotaro
2013-01-18 16:06:28 -05:00
Boris Zbarsky
8681fe6286
Bug 828787. Stop allowing indexed expandos on windows. r=peterv
2013-01-22 15:29:53 -05:00
Randell Jesup
83ac0a2ab6
Bug 825510: Mark PeerConnection mochitests as desktopsupportedonly r=ted
2013-01-22 14:54:10 -05:00
Andrew McCreight
e33fde633d
Bug 830595 - Add JSAutoCompartment to nsJSContext::ExecuteScript. r=bz
2013-01-22 11:48:46 -08:00
Rob Wood
74c20aed06
Bug 806811 - Add WebSMS tests for multisegments, update manifest; r=davehunt
2013-01-22 11:48:53 -05:00
Randell Jesup
6010043a43
Bug 825510: enable PeerConnection mochitests r=ted a=nonlibxul
2013-01-22 11:34:46 -05:00
Gene Lian
e5469568e5
Bug 831108 - Process tab terminated (stop loading) on http://margaretleibovic.com/mural/ . r=fabrice
2013-01-18 21:50:01 +08:00
Gaurav Pruthi
ecc5e6a95c
Bug 672190 - Remove declaration and definitions of 'expandEntityReferences' from NodeIterator and TreeWalker. r=Ms2ger
2013-01-20 17:53:48 +05:30
Sankha Narayan Guria
1f4ae99685
Bug 823872 - Add test for OS.Constants.{libc, Win}. r=Yoric
2013-01-19 18:49:42 -05:00
David Zbarsky
9f0a9f49ed
Bug 831673, r=bz
2013-01-19 15:56:31 -05:00
David Zbarsky
51481eee40
Bug 832169 - Convert SVGAnimatedLength to WebIDL r=bz
2013-01-19 15:56:00 -05:00
Steve Fink
d3f194fbfb
Bug 828753 - jsid rooting, mostly in jsinfer.*. Also switch JSObject from struct to class. r=terrence
2012-12-31 12:40:21 -08:00
Fabrice Desré
4681b29bd2
Bug 814226 - Permission checks for "webapps-manage" could probably be friendlier r=sicking
2013-01-19 08:56:29 -08:00
Phil Ringnalda
d564033cc7
Back out 7dbbb6e3d240 (bug 832435) for assertion failures
2013-01-18 21:29:05 -08:00
Bobby Holley
2f946c4f2d
Bug 832435 - Fix compartment handling for EvaluteString and javascript: uris. r=bzbarsky
2013-01-18 23:33:26 -05:00
Phil Ringnalda
cfde015d27
Back out 8447875c6479 (bug 823010) for marionette failures in test_incoming.js
...
CLOSED TREE
2013-01-18 19:12:03 -08:00
Phil Ringnalda
c0f2240b85
Back out fdeb0c833138 (bug 814226) for Linux bc failures in browser_webapps_permissions.js
...
CLOSED TREE
2013-01-18 19:10:47 -08:00
Philipp von Weitershausen
07ea190999
Bug 823010 - B2G SMS: We should not ack reception when there's a storage error. r=vicamo, ferjm a=blocking-b2g
2013-01-18 16:34:57 -08:00
Fabrice Desré
c1689fb0d1
Bug 814226 - Permission checks for "webapps-manage" could probably be friendlier r=sicking
2013-01-18 16:29:12 -08:00
Mike Habicher
3e50c72e19
backed out changeset 0004848a182f, a=bustage
2013-01-18 16:46:26 -05:00
Steve Fink
cb8aecdd2a
Backed out changeset fce4e0f8a553 (bug 828753) for breaking windows warnings-as-errors (stop adding JSObject forward decls, please!)
2013-01-18 13:20:21 -08:00
Mike Habicher
2fe99140e0
Bug 819835 - add support for setting the EXIF DateTime field, r=sotaro
2013-01-18 16:06:28 -05:00
Steve Fink
fa3e8f224b
Bug 828753 - jsid rooting, mostly in jsinfer.*. Also switch JSObject from struct to class. r=terrence
...
--HG--
extra : rebase_source : c8806b27677594925ad0e6b54c47af5cf17e1153
2012-12-31 12:40:21 -08:00
David Zbarsky
3705bdd315
Bug 831669 - Convert SVGClipPathElement to WebIDL r=bz
2013-01-18 14:53:08 -05:00
Georg Fritzsche
b8e8e1bc08
Bug 813245 - Sanity-check for mimetype count from pluginreg.dat. r=bsmedberg
2012-12-21 16:12:46 +01:00
Fabrice Desré
ca843f00db
Bug 829934 - Implement a hash verifier for webapp/mini manifest r=ferjm
2013-01-18 09:54:06 -08:00
Fabrice Desré
ed8960813a
Bug 830835 - update a app, cancel the download, check for update => does not send a downloadavailable event r=julienw
2013-01-18 09:01:40 -08:00
Antonio M. Amaya
67f2879e63
Bug 831617 - Killed process when change settings, r=sicking
2013-01-17 22:50:59 +01:00
Gina Yeh
4d76e6a416
Bug 828175 - Patch 1: [Bluetooth] [Hfp] Error handling for AT+CHLD command, r=echou
2013-01-18 18:53:00 +08:00
Adam Roach [:abr]
9c2697eb77
Bug 824919: Weaken key references to PeerConnection and friends r=jesup,smaug,ekr
2013-01-17 17:11:14 -06:00
Yoshi Huang
e514da1eed
Bug 821584 - Part 2: xpcshell tests for parsePbrTlv. r=hsinyi
2013-01-16 17:34:37 +08:00
Yoshi Huang
1251f7427a
Bug 821584 - Part 1: readPBR and Refactor ICCContact. r=hsinyi
2012-12-27 19:06:29 +08:00
Nicholas Nethercote
3dca3123e6
Bug 826521 (part 2) - Report memory used by event targets, especially XHRs. r=bz.
...
--HG--
extra : rebase_source : 543f0e367ce73477d62eca544137a101108a97be
2013-01-17 21:21:43 -08:00
Nathan Froyd
7aa97a3a13
Bug 834106 - consolidate ClonedMessageData building code into MessageManagerCallback; r=smaug
2013-01-23 21:39:27 -05:00
Ken Chang
8b25b88c88
Bug 833271 - B2G CDMA: Support data call. r=vicamo
2013-01-24 10:07:17 +08:00
Yoshi Huang
6c5659fe48
Bug 827831 - Part 3: [B2G STK]: Marionette test case. r=allstars.chh
2013-01-24 19:13:08 +08:00
Siddartha Pothapragada
53e5abea96
Bug 827831 - Part 2: [B2G STK]: Support variable timeout for GET INKEY. r=allstars.chh
...
From d4f98c2a3b0debfd13747602104a7530b0f999e9 Mon Sep 17 00:00:00 2001
---
dom/system/gonk/ril_worker.js | 7 +++++++
1 file changed, 7 insertions(+)
2013-01-09 05:49:47 -08:00
Siddartha Pothapragada
aeca1092e1
Bug 827831 - Part 1: [B2G STK]: Decode Comprehension-TLV tag Duration, to support variable timeout for GET INKEY. r=allstars.chh sr=sicking
...
From 8ae86db8de8199a9fe77c672ed7ace8ec4e26c2d Mon Sep 17 00:00:00 2001
---
dom/icc/interfaces/SimToolKit.idl | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
2013-01-22 18:21:32 -08:00
Ken Chang
354a3f01cf
Bug 834118 - B2G CDMA: Add CDMA network type in the function of setting preferred network type. r=hsinyi
2013-01-24 16:46:52 +08:00
Jan-Ivar Bruaroey
327a61e43e
Bug 825703: Stun configuration from JS for PeerConnections (IP only) r=bz,jesup
2013-01-23 14:21:25 -05:00
Vicamo Yang
3f4093ae1f
Bug 826977 - Part 4/4: fix voicemail test cases. r=hsinyi
2013-01-24 14:42:13 +08:00
Vicamo Yang
26bfa0c2b8
Bug 826977 - Part 3/4: fix all related components as well. r=hsinyi
2013-01-24 14:42:10 +08:00
Vicamo Yang
2b7d006978
Bug 826977 - Part 2/4: SystemWorkerManager & RadionInterfaceLayer changes. r=qDot
2013-01-24 14:42:07 +08:00
Vicamo Yang
32472d0b97
Bug 826977 - Part 1/4: RadioInterfaceLayer is no longer managed by SystemWorkerManager. New interface. r=qDot
2013-01-24 14:42:03 +08:00
Cervantes Yu
0d7ae8387b
Bug 833606: Null check mProxy in mozilla::dom::ContentPermissionRequestParent::ActorDestroy(). r=bent a=blocking-b2g
2013-01-23 21:42:09 -08:00
Vincent Chang
4f1964926a
Bug 831716 - [Settings] [Internet sharing][wifi] Tapping Wi-fi hotspot/wifi ON disable Wi-fi connection forever. r=mrbkap, dflanagan
2013-01-17 20:26:17 +08:00
Adam Roach [:abr]
f87a8298a1
Bug 827843: Check for closed state on relevant operations r=jesup,smaug
2013-01-17 14:25:17 -06:00
Ryan VanderMeulen
b576d15101
Backed out changeset 33b1caee42d2 (bug 827843) for Android test failures.
2013-01-24 20:02:59 -05:00
Robert O'Callahan
52fa9f133a
Bug 804837. Part 0: Rework the connection and input/output port logic for Web Audio nodes; r=ehsan
...
Here's what this patch does:
-- Makes AudioNodes mostly not use nsWrapperCache. AudioDestinationNode
still does.
-- Rename MaxNumberOfInputs/Outputs to NumberOfInputs/Outputs, and have them
default to 1 in AudioNode.
-- Allow any number of nodes to be connected to any given input/output port.
2013-01-23 19:50:18 -05:00
Andrew Miller
e764c791cc
Bug 833948 - Fix misspelling of property from candidateInitDict. r=rjesup
2013-01-24 10:00:22 +13:00
Ryan VanderMeulen
2812fd6c3b
Merge m-c to inbound.
2013-01-24 18:10:25 -05:00
Adam Roach [:abr]
e1bfd6320a
Bug 827843: Check for closed state on relevant operations r=jesup,smaug
2013-01-17 14:25:17 -06:00
Adam Roach [:abr]
aa7359029f
Bug 825570: Finish plumbing attribute getters for localDescription and remoteDescription r=jesup,smaug
2013-01-14 16:25:54 -06:00
Steven Michaud
555c9efaae
Bug 829284 - Unity plugin doesn't display in HiDPI mode. r=bgirard
2013-01-23 16:19:15 -06:00
Avi Halachmi
c3ea912316
Bug 826383: cyclic array for frames recording to support concurrent users. r=jmuizelaar,khuey
2013-01-23 20:47:44 +02:00
Steven Michaud
6c5b22cb18
Bug 833936 - NPNVcontentsScaleFactor inadvertently not supported for NPN_GetValue() when called from OOP plugins. r=bgirard
2013-01-23 15:55:41 -06:00
Dale Harvey
547c35d6d3
Bug 833095 - Fix format of file notification when recording complete. r=mikeh
2013-01-23 16:35:06 -05:00
David Zbarsky
2e5c05803f
Bug 832153 - Convert SVGMaskElement to WebIDL r=bz
2013-01-23 15:59:46 -05:00
Gregor Wagner
4b84d47d16
Backout bug 793204. r=me
2013-01-23 10:17:33 -08:00
Benjamin Smedberg
eb8295ee03
Bug 321958 - Remove dead code nsIPluginTagInfo.getTagText, r=josh
2013-01-23 10:11:53 -05:00
James Willcox
774072ffdf
Bug 800838 - Guard against invalid NPP when unscheduling plugin timers on Android r=blassey
2013-01-23 09:16:26 -05:00
Aaron Klotz
e70c449d32
Bug 829909 - Fix some Plugin Hang UI synchronization problems. r=bbondy
2013-01-17 21:22:21 -05:00
Andrew McCreight
d49d03aef4
Bug 826471. Add JSAutoCompartment in nsWindowSH::NewResolve. r=bholley
2013-01-17 16:30:41 -08:00
Chris Jones
8c7bb72c30
Bug 786631, part 2: Make the prelaunch process totipotent and specialize when it's taken. r=jlebar
2013-01-17 12:06:36 -08:00
Marco Chen
b386752fe6
Bug 830611 - [Audio] Add dom_audioagent.xpt into package-manifest.in. r=roc
2013-01-17 16:18:22 +08:00
Jan Varga
46dca7ab38
Bug 831169 - crash in mozilla::dom::indexedDB::PIndexedDBTransactionChild::SendAllRequestsFinished. r=bent
2013-01-17 22:38:36 +01:00
Henrik Skupin
a2e17be0ae
Bug 831782 - Small fixes for WebRTC mochitests. r=jesup
2013-01-17 22:33:02 +01:00