Mihai Sucan
1f75b07c7f
Bug 823097 - Add support for %c style formatting in the web console; r=past,bz
2014-04-10 17:59:21 +03:00
Ryan VanderMeulen
67a863c0c5
Merge m-c to inbound on a CLOSED TREE.
2014-04-10 22:16:50 -04:00
Ryan VanderMeulen
2bf6dfd88c
Backed out 6 changesets (bug 982141) for Windows and OSX bustage. CLOSED TREE
...
Backed out changeset 16540ab2d2cb (bug 982141)
Backed out changeset 2ad9ce9d904e (bug 982141)
Backed out changeset af219bb49c06 (bug 982141)
Backed out changeset ffe51d96e86e (bug 982141)
Backed out changeset 6642718ad3bb (bug 982141)
Backed out changeset 95b341d26f7b (bug 982141)
2014-04-10 15:27:42 -04:00
Ed Morley
c0321014a8
Merge mozilla-central and b2g-inbound
2014-04-10 17:59:51 +01:00
Ed Morley
73c827f7b3
Merge latest green inbound changeset and mozilla-central
2014-04-10 17:55:29 +01:00
Ed Morley
310c9d9a41
Merge latest green b2g-inbound changeset and mozilla-central
2014-04-10 17:45:11 +01:00
Ghislain 'Aus' Lacroix
4ccc39ea3e
Bug 992766 - Infer error when recieving NS_ERROR_FAILURE by going through device storage sanity checks, if device storage api is available. r=fabrice
2014-04-10 09:32:53 -07:00
Boris Zbarsky
96db362740
Bug 991080. Add an overload of Promise::ArgumentToJSValue that lets callers pass in an nsTArray to MaybeResolve() a promise with a JS array. r=khuey
2014-04-10 00:58:43 -04:00
Boris Zbarsky
893f2b3907
Bug 993889 part 6. Remove the "scope" argument of dom::WrapObject methods. r=bholley
2014-04-10 00:58:43 -04:00
Boris Zbarsky
e233bf14f8
Bug 993889 part 5. Remove the "creator" argument of the version of TypedArray::Create that takes a JSObject* creator. r=bholley
2014-04-10 00:58:42 -04:00
Boris Zbarsky
adc450e8a7
Bug 993889 part 4. Remove the scope argument of xpc_FastGetCachedWrapper. r=bholley
2014-04-10 00:58:42 -04:00
Boris Zbarsky
cd175a1557
Bug 993889 part 3. Remove the scope argument of the classinfo WrapNative methods. r=bholley
2014-04-10 00:58:42 -04:00
Boris Zbarsky
3738611b99
Bug 993889 part 1. Remove "scope" argument from nsContentUtils::WrapNative. r=bholley
2014-04-10 00:58:41 -04:00
Ryan VanderMeulen
5de13f836a
Backed out changeset c81707878977 (bug 974197) for Gaia integration test failures on a CLOSED TREE.
2014-04-09 22:14:13 -04:00
Ryan VanderMeulen
40d36c2c28
Merge m-c to inbound on a CLOSED TREE.
2014-04-09 19:11:24 -04:00
Mike Habicher
148549b192
Bug 981047 - enable torch mode in low light when video recording, r=dhylands,ehsan
2014-04-09 11:53:41 -04:00
Mike Habicher
a227ea0e70
Bug 983180 - hide camera objects behind Navigator::HasCameraSupport(), r=bz
2014-04-09 11:53:34 -04:00
Mike Habicher
dd79db6c78
Bug 965420 - camera face-tracking, r=bz,dhylands
2014-04-09 11:52:10 -04:00
Youngwoo Jo
9a24f21df5
Bug 965421 - camera continuous autofocus status callback, r=jst,mikeh
2014-04-09 11:12:25 -04:00
Etienne Segonzac
3257f40ed3
Bug 992948 - Add missing data to the telephony-call-ended systemmessage. r=hsinyi
2014-04-10 10:01:58 -04:00
Geoff Brown
e5a312f133
Bug 962676 - Reset expected assertion counts for Android crashtests; r=blassey
2014-04-09 08:38:44 -06:00
Carsten "Tomcat" Book
9dc755f644
Merge m-c to mozilla-inbound
2014-04-09 14:41:48 +02:00
Carsten "Tomcat" Book
7cd09aa69d
merge b2g-inbound to mozilla-central
2014-04-09 14:27:34 +02:00
Henry Chang
bfc9b027c9
Bug 993732 - Should use renamed properties done by bug 988129. pending r=gene
...
Landed directly on mozilla-central in order to fix the Firefox OS bustage in today's build.
2014-04-09 15:42:47 +08:00
Siddartha Pothapragada
5c7ab7028c
Bug 993896 - Fire success / error to dom requests based on status received from gonk. r=allstars.chh
2014-04-08 23:17:53 -07:00
Fabrice Desré
970e3edb8e
Bug 991023 - [Tarako] JS error in SystemMessageInternal.js after grouping apps in activities chain. r=gene
2014-04-10 17:05:59 -07:00
Vicamo Yang
5cd3ea727b
Bug 995107: fix RIL DSDS marionette test cases on emulator-jb,kk. r=echen
2014-04-11 22:28:07 +08:00
Vicamo Yang
9d7ac97787
Bug 994601: fix undefined 'RequestSettingValue' and 'nsIRILNetworkInterface' in Flatfish build. r=kanru
2014-04-11 22:28:01 +08:00
Vicamo Yang
7c817ef026
Bug 977995 - remove mNetdWorker from SystemWorkerManager. r=khuey, f=vchang
...
There are multiple defects in NetworkWorker and the related parts
since the C++ rewrite. 1) NetworkService holds a reference to
NetworkWorker and never releases it. It has to wait until the cycle
collector comes up to resolve their ownership loop and free
NetworkWorker manually. However 2) nsINetworkWorker::shutdown is
never called, and that leaves everything living till the end,
inclusive of that gNetdConsumer in Netd.cpp. 3) when GC comes to free
NetworkWorker, it calls its parent destructor ~NetConsumer(), which
in turn calls ~RefCounted<NetdConsumer>(). Having a valid
gNetdConsumer in Netd.cpp follows its refCnt is not zero and this
triggers an assertion in ~RefCounted<NetdConsumer>().
So, some obvious treatments here. A) NetworkService should call
nsINetworkWorker::shutdown upon receiving a shutdown observer event
and release the reference to NetworkWorker. B) NetworkWorker should
never be double ref-counted. Move NetdConsumer implementation into a
separated class.
2014-04-11 22:27:55 +08:00
Aaron Klotz
0fe393e140
Bug 913653: Remove lock from IOInterposer and add IOInterposer thread registration; r=froydnj
2014-04-08 22:57:52 -06:00
Botond Ballo
e235befc24
Bug 976605 - Turn GeckoCC::NotifyTransform[Begin|End] into an extensible APZ state change notification mechanism. r=kats
...
--HG--
extra : source : 5353e86dcfe8b2ff6f02e577a4c69a1de6808d9b
2014-04-15 13:39:20 -04:00
Hsin-Yi Tsai
bc06b6fedb
Bug 989728 - [B2G] [RIL] split test_conference.js into smaller pieces to avoid timeout failure. r=vicamo
...
* * *
split test_conference.js - p4 - split test_conference
2014-04-08 14:10:06 +08:00
Ben Tian
4d55872d98
Bug 993278 - [bluedroid][HFP] Respond OK even if subscriber number information is empty, r=echou
2014-04-10 16:32:54 +08:00
Ben Tian
55388258bd
Bug 993275 - [Bluedroid] Ensure icon for audio service devices, r=echou
2014-04-14 09:50:47 +08:00
Ryan VanderMeulen
d094fa91bc
Backed out changeset d610b0d353d4 (bug 995757) for bustage.
...
CLOSED TREE
2014-04-13 20:24:25 -04:00
Ehsan Akhgari
cab7f3c210
Bug 995757 - Remove nsIDOMMozApplicationEvent; r=bzbarsky
2014-04-13 18:54:11 -04:00
Ehsan Akhgari
239fa59ff5
Bug 995754 - Remove nsIDOMToString; r=bzbarsky
2014-04-13 18:53:36 -04:00
Ehsan Akhgari
198d0d6c1d
Bug 995753 - Remove nsIDOMHTMLByteRanges; r=khuey
2014-04-13 18:52:48 -04:00
Alexandre Poirot
21d280d8e3
Bug 992778 - Set docshell.chromeEventHandler in child processes. r=bz
2014-04-09 07:15:00 +02:00
Marco Castelluccio
1da7c03cb4
Bug 858772 - Fail if the checkForUpdate request fails instead of timing out. r=fabrice
2014-04-14 11:06:00 +02:00
Ed Morley
13b0b45b74
Backed out changeset aac6762777be (bug 886416) for mochitest ABORTs; CLOSED TREE
2014-04-11 17:07:42 +01:00
Ehsan Akhgari
ffc0950558
Bug 886416 - Move SVGLength to WebIDL; r=bzbarsky
2014-04-11 11:24:06 -04:00
Bobby Holley
91739ca9b3
Bug 990290 - Get rid of dynamic XBL JSClasses. r=bz
2014-04-11 07:59:47 -07:00
Bobby Holley
1ebf223fc7
Bug 990290 - Store class objects in a weak map off the XBL global. r=bz
...
Note that we simultaneously rip out all of the crazy lifetime management for the
dynamic JSClasses here (it would be nice to do that in a separate patch, but it's
all kind of tied up together). With this patch, we simply have one dynamic JSClass
per class object, which is deleted in the finalizer. In the next patch, we remove
dynamic JSClasses entirely.
2014-04-11 07:59:47 -07:00
Bobby Holley
346359be02
Bug 990290 - Stop using the full-blown class object setup for precompilation. r=bz
2014-04-11 07:59:47 -07:00
Bobby Holley
5477fe3737
Bug 990290 - Remove silly LRU cache of nsXBLJSClass instances. r=bz
2014-04-11 07:59:47 -07:00
Bobby Holley
318a3304dd
Bug 990290 - Remove unnecessary conditional and unindent. r=bz
2014-04-11 07:59:46 -07:00
Bobby Holley
506d2f07ec
Bug 990290 - Stop using ye olde JS_InitClass for XBL class objects. r=bz
2014-04-11 07:59:46 -07:00
Edgar Chen
b625cbc288
Bug 978027 - Part 4: Test cases for prl version. r=allstars.chh
2014-04-07 16:18:50 +08:00
Edgar Chen
627ebb29a3
Bug 978027 - Part 3: Get icc app index only when the _isCdma flag is ready to use. r=allstars.chh
2014-04-07 16:57:45 +08:00
Edgar Chen
3567f2c50f
Bug 978027 - Part 2: RIL implementation for prl version. r=allstars.chh
2014-04-07 15:29:04 +08:00
Edgar Chen
de9a8c841d
Bug 978027 - Part 1: Interface changes for prl version. r=hsinyi,allstars.chh
2014-04-07 14:44:45 +08:00
Vicamo Yang
293d1f79c3
Bug 979134: convert test_mobile_operator_names.js to Promise. r=hsinyi
2014-04-09 13:16:10 +08:00
Vicamo Yang
47423e6b5b
Bug 979134: convert test_mobile_data_location.js to Promise. r=hsinyi
2014-04-09 13:16:09 +08:00
Vicamo Yang
fa82108d22
Bug 979134: convert test_mobile_voice_location.js to Promise. r=hsinyi
2014-04-09 13:16:07 +08:00
Vicamo Yang
fcdcede255
Bug 979134: convert test_mobile_data_state.js to Promise. r=hsinyi
2014-04-09 13:16:06 +08:00
Vicamo Yang
a79355124a
Bug 979134: convert test_mobile_voice_state.js to Promise. r=hsinyi
2014-04-09 13:16:05 +08:00
Vicamo Yang
0c31f5c9b5
Bug 979134: convert test_mobile_networks.js to Promise. r=hsinyi
2014-04-09 13:16:04 +08:00
Vicamo Yang
592cc0d95c
Bug 979134: share wrapDomRequestAsPromise. r=hsinyi
2014-04-09 13:16:03 +08:00
Andrea Marchesini
eaa3ff4eed
Bug 987064 - Remove AudioChannelType. r=roc, r=mchen, r=bent
2014-04-10 18:39:20 +01:00
Marco Castelluccio
b326ec63a2
Bug 906223 - Add currently running app to the registry if it isn't already there. r=fabrice
...
--HG--
rename : toolkit/webapps/tests/test_hosted_launch.xul => toolkit/webapps/tests/test_hosted_launch_no_registry.xul
rename : toolkit/webapps/tests/test_packaged_launch.xul => toolkit/webapps/tests/test_packaged_launch_no_registry.xul
2014-04-13 14:42:39 -04:00
Alessio Placitelli
8414841380
Bug 529877 - Remove stray printfs in e10s dom/ipc code. r=cjones
2014-04-13 14:18:02 -04:00
Ted Clancy (:tedders1)
e51c562ec9
Bug 970303 - Don't call DatabaseInfo::Remove() when app is killed, in case another app is still using the database. r=bent
2014-04-03 16:57:40 -07:00
Jessica Jong
bb6203462b
Bug 961921 - Part 2: add data connection tests for DSDS. r=hsinyi
2014-04-09 18:54:00 +02:00
Jessica Jong
9ce98e6211
Bug 961921 - Part 1: separate roaming preference for each client. r=hsinyi
2014-04-08 20:55:00 +02:00
Szu-Yu Chen [:aknow]
56ab53a7ec
Bug 993255 - Part 3: Fix related test case. r=hsinyi
2014-04-10 02:06:00 +02:00
Szu-Yu Chen [:aknow]
28141d73a9
Bug 993255 - Part 2: Hangup pending outgoing call. r=hsinyi
2014-04-10 02:06:00 +02:00
Szu-Yu Chen [:aknow]
a3e0395827
Bug 993255 - Part 1: Refactor: extract removeVoiceCall. r=hsinyi
2014-04-10 02:05:00 +02:00
Vincent Chang
cce5b587f4
Bug 993327 - [tarako] unable to enable Data Connect after turning off WIFI. r=chulee
2014-04-10 11:48:50 +08:00
Vincent Chang
c63f2b9b92
Bug 993821 - [Wifi] Event thread is blocked in WaitForEvent caused wifi stay in searching state. r=chulee
2014-04-10 13:52:38 +08:00
Yoshi Huang
7fb797dee0
Bug 993893 - B2G NFC: NfcManager APIs will also check nfc-write permission. r=dimi
2014-04-09 17:58:28 +08:00
Ben Tian
cec5d102b0
Bug 989845 - [bluedroid] Implement KeyPressedCallback to handle HSP commands, r=echou
2014-04-09 17:44:03 +08:00
Ryan VanderMeulen
9d7fe65b51
Merge m-c to b2g-inbound on a CLOSED TREE.
2014-04-09 19:11:57 -04:00
Alexandre Lissy
5791343b37
Bug 989876 - Keep updateTime field uptodate for gaia apps. r=fabrice
2014-04-09 15:45:15 +02:00
Kyle Huey
8465d25d7c
Back out bug 991812 for bustage on a CLOSED TREE. r=me
2014-04-08 17:26:33 -07:00
Kyle Huey
29e720d5cf
Bug 993203: Add a memory reporter to count SettingsManager observers. r=njn
2014-04-08 16:37:09 -07:00
Kyle Huey
7d49ea1ba1
Bug 991812: Remove uses of RefCounted in code that lives solely in Gecko. r=ehsan
2014-04-08 16:37:05 -07:00
Boris Zbarsky
dfd0a0d909
Bug 991742 part 10. Remove the "aScope" argument from the Promise ArgumentToJSValue() methods. r=bholley
2014-04-08 18:27:19 -04:00
Boris Zbarsky
a0c3167371
Bug 991742 part 9. Remove the "scope" argument of WrapNewBindingObject. r=bholley
2014-04-08 18:27:19 -04:00
Boris Zbarsky
35fca5eeeb
Bug 991742 part 8. Remove the "aScope" argument of WebIDL/nsWrapperCache WrapObject() methods. r=bholley
...
This patch was mostly generated with the following command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e '/WrapObject(JSContext/ {; N; s/\(WrapObject(JSContext *\* *a\{0,1\}[Cc]x\),\n\{0,1\} *JS::Handle<JSObject\*> a\{0,1\}[sS]cope/\1/ ; }' -i ""
and then reverting the changes that made to
dom/bindings/BindingUtils.h, since those WrapObject methods are not
the ones we're trying to change here, plus a bunch of manual fixups
for cases that this command did not catch (including all the callsites
of WrapObject()).
2014-04-08 18:27:18 -04:00
Boris Zbarsky
56f44fdf10
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
...
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 18:27:17 -04:00
Boris Zbarsky
9bcd256586
Bug 991742 part 5. Remove use of the "aScope" argument in binding Wrap() methods. r=bholley
2014-04-08 18:27:16 -04:00
Boris Zbarsky
6881a9948d
Bug 991742 part 4. Remove the "scope" argument of WrapCallThisObject(). r=bholley
2014-04-08 18:27:15 -04:00
Boris Zbarsky
9f72e9c2b1
Bug 991742 part 3. Remove the "scope" argument of WrapNativeParent(). r=bholley
2014-04-08 18:27:15 -04:00
Boris Zbarsky
82846a8e3e
Bug 991742 part 2. Remove the "scope" argument of WrapNativeParentHelper/WrapNativeParentFallback/WrapNativeISupportsParent. r=bholley
2014-04-08 18:27:15 -04:00
Boris Zbarsky
d3234363d3
Bug 991742 part 1. Enter the compartment of the current wrapper before we try to reparent objects. r=bholley
...
This lets us preserve some invariants about our current compartment matching the scope we want to wrap into.
2014-04-08 18:27:15 -04:00
Ryan VanderMeulen
d696aef1c0
Merge m-c to inbound.
2014-04-08 18:26:26 -04:00
Ryan VanderMeulen
fe0ec6cc66
Merge inbound to m-c.
2014-04-08 18:17:58 -04:00
Peter Van der Beken
06912887b1
Bug 990158 - Remove line from bad merge in f1e4f0f82a9a.
...
--HG--
extra : rebase_source : ad5cddb57ed8acb125b9b9f164c4682b16bcd8f1
2014-04-08 20:47:55 +02:00
Peter Van der Beken
f2423cc257
Bug 983619 - Add Window.getInterface/QueryInterface to WebIDL, followup to deal with review comment. r=bz.
...
--HG--
extra : rebase_source : a0e0fa6d59c9edb9b346a5cb8b062144198a87c2
2014-04-08 20:39:38 +02:00
Peter Van der Beken
8d80d59d7f
Bug 993047 - Fix some style nits from f6b0e518f6d2.
...
--HG--
extra : rebase_source : 9cb1f3c793b066aed1836c08cce786554d61cfd2
2014-04-08 20:39:38 +02:00
Ryan VanderMeulen
1b876b69a4
Backed out changeset 27578e0cf97f (bug 959870) for webrtc test bustage.
2014-04-08 15:30:31 -04:00
Carsten "Tomcat" Book
95dd8043e0
Merge m-c to b2g-inbound
2014-04-08 15:45:08 +02:00
Carsten "Tomcat" Book
7425fc1547
merge b2g-inbound to mozilla-central
2014-04-08 15:34:07 +02:00
Fredrik Lanker
e82b4c36c7
Bug 985481 - Make sure that a supported video size is set. r=mikeh
2014-04-08 00:21:00 +02:00
Bevis Tseng
37c6e279dc
Bug 990918 - Part 2: Add Xpcshell Test Case for setCellBroadcastSearchList(). r=htsai
2014-04-03 16:46:51 +08:00
Bevis Tseng
5e679ebe22
Bug 990918 - Part 1: Make RIL compatible for both new/old formats of ril.cellbroadcast.searchlist. r=htsai
2014-04-03 16:33:56 +08:00
Ryan VanderMeulen
55244323f3
Merge b2g-inbound to m-c.
2014-04-07 22:29:35 -04:00
Peter Van der Beken
7741df1efa
Back out 75c95dac7fe0 (bug 984497) and f1b0d3d13755 (bug 990475) to fix bustage on a CLOSED TREE.
...
--HG--
extra : rebase_source : a63315cd428faeb95464f6ad76946d1c0c6d36c3
2014-04-07 22:18:53 +02:00
Andrea Marchesini
f722793d24
Bug 963038 - Datastore: Support for Transactional semantics, r=ehsan
...
--HG--
rename : dom/datastore/tests/test_basic.html => dom/datastore/tests/test_transactions.html
2014-04-07 21:08:11 +01:00