Commit Graph

26025 Commits

Author SHA1 Message Date
Fernando Rodriguez Sela
d057bdce3a Bug 1018164 - Fix IP address recovery in PushService. r=nsm 2014-06-03 23:45:00 -04:00
Ehsan Akhgari
0ab5221feb Bug 1015783 - Add a devtools API for Web Audio; r=padenot,smaug
See bug 980506 for an extensive discussion about this.  This patch adds
three APIs to AudioNode in order for us to be able to build awesome
devtools on top of it.

* Weak reference API.
  This patch allows one to hold a weak reference to all AudioNode's
  using Components.utils.getWeakReference().  That way, the devtool's
  inspection code would not change the lifetime of AudioNodes.
* AudioNode.id
  This is a chrome-only unique and monotonically incrementing ID for
  AudioNode objects.  It is supposed to be used in order for the
  devtools to be able to identify a node without having to keep it
  alive.
* webaudio-node-demise
  This is an observer notification that is called every time an
  AudioNode gets destroyed inside Gecko.  The ID of the corresponding
  node is passed to this notification.

--HG--
extra : rebase_source : 83246a990489daf44ddc97dd4ea372a8cebe8e00
2014-06-03 22:51:48 -04:00
Markus Stange
7e5c225100 Bug 944938 - Move the layers.async-pan-zoom.enabled pref to gfxPrefs and make it override the apz subframe pref when false. r=kats 2014-06-03 15:39:44 +02:00
Masayuki Nakano
946091024d Bug 939006 part.13 Sort out deprecated key names r=smaug 2014-06-04 21:43:45 +09:00
Masayuki Nakano
3a22ba8300 Bug 939006 part.12 Sort out key names in Media Controller Keys section r=smaug 2014-06-04 21:43:45 +09:00
Masayuki Nakano
68baaf4ea6 Bug 939006 part.11 Sort out key names in Browser Keys section r=smaug 2014-06-04 21:43:45 +09:00
Masayuki Nakano
5fa2449cb3 Bug 939006 part.10 Sort out key names in Application Keys section r=smaug 2014-06-04 21:43:44 +09:00
Masayuki Nakano
3232b2cb78 Bug 939006 part.9 Sort out key names in Multimedia Keys section r=smaug 2014-06-04 21:43:44 +09:00
Masayuki Nakano
f8caebef0e Bug 939006 part.8 Sort out key names in General-Purpose Function Keys section r=smaug 2014-06-04 21:43:44 +09:00
Masayuki Nakano
cf483e6176 Bug 939006 part.7 Sort out key names in IME and Composition Keys section r=smaug 2014-06-04 21:43:43 +09:00
Masayuki Nakano
c296f5723d Bug 939006 part.6 Sort out key names in Device Keys section r=smaug 2014-06-04 21:43:43 +09:00
Masayuki Nakano
0e77f7e04f Bug 939006 part.5 Sort out key names in UI Keys section r=smaug 2014-06-04 21:43:43 +09:00
Masayuki Nakano
c063f0a8a9 Bug 939006 part.4 Sort out key names in Editing Keys section r=smaug 2014-06-04 21:43:43 +09:00
Masayuki Nakano
6622532bee Bug 939006 part.3 Sort out key names in Navigation Keys section r=smaug 2014-06-04 21:43:42 +09:00
Masayuki Nakano
fdb2431668 Bug 939006 part.2 Sort out key names in Whitespace Keys section r=smaug 2014-06-04 21:43:42 +09:00
Masayuki Nakano
ee37e9f481 Bug 939006 part.1 Sort out key names in Modifier Keys section r=smaug 2014-06-04 21:43:42 +09:00
Nathan Froyd
8463d09509 Bug 1019705 - replace binaryNames accesses with binaryNameFor; r=bz 2014-06-03 12:20:16 -04:00
Nathan Froyd
031a6bc8f6 Bug 1019162 - fix a -Wmaybe-uninitialized build warning in nsDOMWindowUtils.cpp; r=smaug 2014-06-02 15:05:53 -04:00
Nathan Froyd
f0e2da6f1e Bug 1019161 - fix a -Wmaybe-uninitialized build warning in ArchiveRequest.cpp; r=baku 2014-06-02 15:05:38 -04:00
Olli Pettay
8413246b5f Bug 1003046 - ContentChild::RecvPBrowserConstructor should not call SendGetProcessAttributes(), r=fabrice,khuey 2014-06-04 00:15:27 +03:00
Sean Lin
588c66de03 Bug 1013671 - Use SystemAppProxy to fire "system-messages-open-app" from SystemMessageInternal.js. r=gene
Bug 793420 - Remove the waiting timer for the open-app mozChromeEvents requested by System Message.
r=gene, fabrice
2014-05-30 15:48:25 +08:00
Carsten "Tomcat" Book
f13d351a57 Backed out changeset c15e59678a60 (bug 1017896) for reftest failures 2014-06-04 08:55:59 +02:00
Ehsan Akhgari
0cfa8d7a07 Backed out 3 changesets (bug 1015783) because of test failures on a CLOSED TREE
Backed out changeset 1307202f365c (bug 1015783)
Backed out changeset 5c83b4710688 (bug 1015783)
Backed out changeset feb56fc5dc01 (bug 1015783)
2014-06-03 19:49:04 -04:00
William Chen
3d94034ff8 Bug 1017896 - Ensure there is a template contents owner when creating template elements. r=bz 2014-06-03 16:09:41 -07:00
Kyle Huey
7ffb8ff042 Bug 1019248: Convert ProgressEvent to WebIDL codegen. r=smaug 2014-06-03 15:52:36 -07:00
Ehsan Akhgari
11367a7bea Bug 1015783 - Add a devtools API for Web Audio; r=padenot,smaug
See bug 980506 for an extensive discussion about this.  This patch adds
three APIs to AudioNode in order for us to be able to build awesome
devtools on top of it.

* Weak reference API.
  This patch allows one to hold a weak reference to all AudioNode's
  using Components.utils.getWeakReference().  That way, the devtool's
  inspection code would not change the lifetime of AudioNodes.
* AudioNode.id
  This is a chrome-only unique and monotonically incrementing ID for
  AudioNode objects.  It is supposed to be used in order for the
  devtools to be able to identify a node without having to keep it
  alive.
* webaudio-node-demise
  This is an observer notification that is called every time an
  AudioNode gets destroyed inside Gecko.  The ID of the corresponding
  node is passed to this notification.
2014-06-03 18:28:18 -04:00
John Schoenick
76be8c28d9 Bug 870021 - Followup, fix currentSrc visibility when pref'd off. r=bz 2014-06-03 15:12:38 -07:00
Ryan VanderMeulen
8d0739d241 Merge m-c to b2g-inbound. a=merge
--HG--
rename : dom/telephony/gonk/TelephonyProvider.js => dom/telephony/gonk/TelephonyService.js
2014-06-03 15:22:54 -04:00
Ryan VanderMeulen
2477e7e6d7 Backed out changeset a0b233afc099 (bug 1011084) for causing bug 1019827. a=me 2014-06-03 15:17:04 -04:00
Ryan VanderMeulen
691bac9c46 Backed out 4 changesets (bug 993282) for bringing back bug 1008357 on a CLOSED TREE.
Backed out changeset b67f3001c73d (bug 993282)
Backed out changeset b9ca30286579 (bug 993282)
Backed out changeset 41fe339ca4ea (bug 993282)
Backed out changeset 2a6184672f1e (bug 993282)
2014-06-03 14:32:10 -04:00
Ryan VanderMeulen
24cbfd735d Backed out changesets 6d1c36585219 and bd403a727849 (bug 1016560) for mochitest-other failures.
CLOSED TREE
2014-06-03 13:48:49 -04:00
Boris Zbarsky
bb12a83cbe Bug 1016560 followup. Fix a new Promise::MaybeReject callsite that was introduced. r=build-bustage 2014-06-03 12:03:16 -04:00
Kartikaya Gupta
acbbdb2a86 Bug 1004266 - Guard against a possible null outerWindow. rs=smaug 2014-06-03 11:59:53 -04:00
Boris Zbarsky
0a69a27027 Bug 1016560. Remove the footgun of rejecting promises with arbitrary objects. r=khuey 2014-06-03 11:38:38 -04:00
Boris Zbarsky
d519374494 Bug 1019149. For calls into JS-implemented WebIDL, don't check whether it's OK to run the script (it is) and whether the script lives in a window (it doesn't). r=bholley 2014-06-03 11:38:37 -04:00
Boris Zbarsky
490d4fc9b2 Bug 1019091. Do less work in the CallSetup destructor when we have no exception. r=bholley 2014-06-03 11:38:37 -04:00
Boris Zbarsky
da05bf53a8 Bug 989584. Allow sites to set window.opener to any value. r=peterv 2014-06-03 11:38:37 -04:00
Boris Zbarsky
2caaa63189 Bug 1017428 part 1. Store information in jitinfo about [Cached] attribute slots in addition to [StoreInSlot] ones. r=peterv,efaust 2014-06-03 11:38:36 -04:00
Fabrice Desré
7e4fd5d4f0 Bug 993282 - Lazy load more js modules - Part 3: RIL r=gene 2014-06-03 08:35:21 -07:00
Fabrice Desré
f4bde9836c Bug 993282 - Lazy load more js modules - Part 2: contacts r=gwagner 2014-06-03 08:35:21 -07:00
Fabrice Desré
c9d2534a61 Bug 993282 - Lazy load more js modules - part 1: NFC r=psiddh 2014-06-03 08:35:20 -07:00
Nicolas B. Pierron
047c32e85e Bug 993282 - Work-around Bug 1015027. r=gwagner 2014-06-03 08:35:20 -07:00
Vicamo Yang
fa6b7968d6 Bug 927320 - 2/2: rename related variables. r=aknow,btian 2014-06-03 22:15:30 +08:00
Vicamo Yang
cff89f3dbc Bug 927320 - 1/2: rename TelephonyProvider to TelephonyService. r=aknow
--HG--
rename : dom/telephony/gonk/TelephonyProvider.js => dom/telephony/gonk/TelephonyService.js
rename : dom/telephony/gonk/TelephonyProvider.manifest => dom/telephony/gonk/TelephonyService.manifest
rename : dom/telephony/ipc/TelephonyIPCProvider.cpp => dom/telephony/ipc/TelephonyIPCService.cpp
rename : dom/telephony/ipc/TelephonyIPCProvider.h => dom/telephony/ipc/TelephonyIPCService.h
rename : dom/telephony/nsIGonkTelephonyProvider.idl => dom/telephony/nsIGonkTelephonyService.idl
rename : dom/telephony/nsITelephonyProvider.idl => dom/telephony/nsITelephonyService.idl
2014-06-03 22:15:25 +08:00
Andrea Marchesini
efb2e9ec25 Bug 957086 - patch 4 - Correct permissions for apps, r=ehsan
--HG--
rename : dom/datastore/tests/test_basic.html => dom/datastore/tests/test_bug957086.html
2014-06-03 15:36:46 +01:00
Andrea Marchesini
ce2ea0ca27 Bug 957086 - patch 3 - DataStoreService in C++ OOP, r=janv 2014-06-03 15:36:46 +01:00
Andrea Marchesini
095068b4df Bug 957086 - patch 2 - DataStoreService in C++, r=ehsan, r=bz, r=janv 2014-06-03 15:36:46 +01:00
Andrea Marchesini
45e09e0b0d Bug 957086 - patch 1 - nsIDataStore instead DataStore.jsm, r=ehsan
--HG--
rename : dom/datastore/DataStoreImpl.jsm => dom/datastore/DataStoreImpl.js
2014-06-03 15:36:46 +01:00
Carsten "Tomcat" Book
aa5043728d merge b2g-inbound to mozilla-central 2014-06-03 14:49:15 +02:00
Ben Tian
2c108a410e Bug 1019377 - Fix build break due to RIL and nsTArrayToJSArray changes (bug 1016849 and bug 1017419), r=shuang 2014-06-03 14:18:00 +08:00