Ehsan Akhgari
5c8aa2057c
Bug 1142790 - Add a test for passing Request objects to DOM cache matchAll method; r=bkelly
2015-03-13 14:40:33 -04:00
Ehsan Akhgari
97b8881fbf
Bug 1142269 - Auto-vacuum the DOM Cache database; r=bkelly
...
It's easiest if we use auto_vaccum for now. In the future if this
proves to be insufficient we can look into more sophisticated
vacuuming strategies.
2015-03-13 14:40:27 -04:00
Ehsan Akhgari
6541ca0b6f
Bug 1133763 - Part 8: Ensure that FetchEvent.respondWith works correctly on HTTPS requests with a cloned response; r=nsm
2015-03-13 14:37:27 -04:00
Ehsan Akhgari
68ae51bd33
Bug 1133763 - Part 7: Add automated tests for using FetchEvent.respondWith on an HTTPS request; r=nsm
2015-03-13 14:37:25 -04:00
Ehsan Akhgari
81a811da5c
Bug 1133763 - Part 6: Set the correct security info on intercepted channels when using the respondWith API; r=jdm
2015-03-13 14:37:24 -04:00
Ehsan Akhgari
92ea15bb44
Bug 1133763 - Part 4: Store the response's security info in the cache database; r=bkelly
2015-03-13 14:37:19 -04:00
Ehsan Akhgari
ef10661c6f
Bug 1133763 - Part 3: Wipe out the cache directory when detecting a change in the DB schema; r=bkelly
2015-03-13 14:37:18 -04:00
Ehsan Akhgari
c11ee2b83b
Bug 1133763 - Part 2: Transfer the security info associated with an InternalResponse across the IPC layer; r=bkelly
2015-03-13 14:37:16 -04:00
Ehsan Akhgari
0cf38d2ae1
Bug 1133763 - Part 1: Remember the security info associated with HTTP fetches and record it inside InternalResponse; r=nsm
2015-03-13 14:37:14 -04:00
Ehsan Akhgari
fe88009867
Bug 1142772 - Interleave the DOM Cache tests run through the mini-framework; r=bkelly
...
Here are the changes needed to achieve this:
* We tag each message posted to the framework with a context argument.
context can be one of "Window", "Worker" or "ServiceWorker". In the
places where we handle messages, we only handle the ones corresponding
to the context that we expect.
* We use Promise.all in order to interleave the execution of the tests.
This has the nice property of actually getting the tests run
simultaneously on multi-core machines.
* For ease of debugging test failures, we print the context from which
each test message is coming from.
* In order for the tests that are run in parallel to not step on each
other's toes, we introduce a global `context' variable that the test
script can use to create names that do not clash with concurrent
test runs. For example, instead of `caches.open("foo")', one must now
use: `caches.open("foo" + context)'.
* The existing tests are modified based on the above.
* When running the tests in parallel, the service worker may end up
controlling both frame.html and message_receiver.html. The hunk at
the end of worker_wrapper.js is intended to ensure that we will
always be communicating with message_receiver.html.
* An order argument has been added to runTests which can be set to
"sequential" in order to run the tests in different contexts in
parallel. If the argument is omitted, the default is "parallel".
2015-03-13 14:32:02 -04:00
Ehsan Akhgari
3c6160ab8a
Bug 1142333 - Add a test for passing Request objects to DOM cache match methods; r=bkelly
2015-03-13 14:28:24 -04:00
Jan-Ivar Bruaroey
6c8986ab3b
Bug 1135655 - bump up tab sharing dimension defaults to match screensharing r=jesup
2015-03-13 12:21:20 -04:00
Ryan VanderMeulen
991a4a7230
Merge m-c to inbound. a=merge
2015-03-13 12:18:07 -04:00
Carsten "Tomcat" Book
59652501d7
Merge mozilla-central to b2g-inbound
2015-03-13 14:13:54 +01:00
Andrew Sutherland
77204452e3
Bug 947167 - Fix/improve debugging of test_downloads_pause_resume.html intermittent. r=aus
2015-03-12 22:27:46 -04:00
Dan Glastonbury
d4ee969786
Bug 1048741 - [WebGL2] texParameter: Fix silly bug in TEXTURE_COMPARE_FUNC handling. r=jgilbert
2015-03-13 16:16:05 +10:00
Phil Ringnalda
449b70840e
Back out 3 changesets (bug 1135424) on suspicion of causing frequent hangs in test_playback.html on mochitest-e10s
...
CLOSED TREE
Backed out changeset 584d91ffdf88 (bug 1135424)
Backed out changeset d86806ea63f4 (bug 1135424)
Backed out changeset e52401d30a67 (bug 1135424)
2015-03-12 23:05:11 -07:00
Boris Zbarsky
f93ad8e329
Bug 1142478 followup. Fix bogus test, and don't get the value of an invalid CheckedInt. Then we can reopen the CLOSED TREE.
2015-03-12 22:59:00 -04:00
Chris Double
3786384366
Bug 1127646 - Report MSE Join Latency and MTBR in telemetry - r=cpearce,bsmedberg
2015-03-13 15:02:49 +13:00
Boris Zbarsky
e9ab0b6864
Bug 1142478. Fix integer attribute parsing to not lose track of leading zeroes. r=sicking
2015-03-12 21:46:57 -04:00
Bobby Holley
fb69461e18
Bug 1135424 - Switch the MDSM to a task queue. r=mattwoodrow
2015-03-12 17:54:35 -07:00
Bobby Holley
838ad64674
Bug 1135424 - Implement MediaTimer. r=mattwoodrow
2015-03-12 17:52:51 -07:00
Bobby Holley
643902f841
Bug 1135424 - Allow MediaPromise dispatch to fail if the ThenValue has been disconnected. r=mattwoodrow
...
The original idea behind the current model was that we wanted ironclad guarantees
that consumers would always get a callback on their promise. But we now have use
cases where the consumer wants to forget about a promise (using the new
Disconnect()) feature, and in some cases wants to shut down the task queue that
the response is going to be dispatched on. In the case of this bug, we want to
avoid waiting for the longest outstanding timer promise to be resolved before
shutting down the MDSM.
So this patch fixes up the pieces needed to make this work:
* Loosening our invariants to allow dispatch targets to be released on any thread,
since MediaTaskQueue and nsIEventTarget both have thread-safe refcounting.
* Releasing mThisVal in Disconnect, so that we no longer depend on successful
dispatch to release it on the correct (dispatch) thread.
* Fiddling with various assertions.
We also make some assertions fatal in nightly/aurora builds while we're at it.
2015-03-12 17:52:50 -07:00
Chris Double
99f7bdd3a1
Bug 1131884 - Video buffering calculation fails for some MP4 videos - r=jya
...
Playback position used in calculating buffering time is set
during metadata reading. This is at end of file for the
video in the bug. As a result the buffering data is always
wrong.
Changed to not setting position during metadata - it is set
during frame playback anyway.
Also changes buffering timeout to 15s from 30s.
2015-03-13 13:45:51 +13:00
Ryan VanderMeulen
dc8db62987
Merge m-c to fx-team. a=merge
2015-03-13 12:21:20 -04:00
Ganesh Sahukari
d69833be5a
Bug 1022816 - OS.File will now be able to change the readOnly, hidden, and system file attributes on Windows. r=paolo
2015-03-13 15:51:53 +00:00
Nikhil Marathe
d79708b630
Bug 1080752 - Hold wakelock when attempting to connect to push server. r=dougt
2015-03-09 15:40:04 -07:00
Bill McCloskey
12af381a9e
Bug 1126089 - Allow messages to be sent after frame script unload event (r=smaug)
2015-03-13 08:24:20 -07:00
Bill McCloskey
9f9ecf4e04
Bug 1126089 - Add test for pageload event on browser element when tab closed (r=smaug)
2015-03-13 08:24:14 -07:00
Thomas Zimmermann
2b228f8626
Bug 1109592 - Listen for connections from NFC daemon. r=allstars.chh
...
This patch inverses the connection setup procedure between Gecko
and nfcd. Gecko now installs a listen socket and starts nfcd from
the init scripts. Nfcd establishes the connection by connecting
to Gecko's socket.
As a side effect of this patch, nfcd only runs while NFC is switched
on. This saves ~1.6 MiB os memory with contemporary NFC drivers on
flame-kk.
2015-03-11 03:38:00 -04:00
Thomas Zimmermann
3f04f600c1
Bug 1109592 - Forward socket state from |NfcSocketListener|. r=allstars.chh
...
This patch allows to handle changes to the socket state at a higher
level than |NfcSocketListener|.
2015-03-09 03:27:00 -04:00
Thomas Zimmermann
4365986c1d
Bug 1109592 - Only open connection to nfcd while NFC is switched on. r=allstars.chh
...
With this patch Gecko only creates a connection to nfcd while NFC is
switched on, and closes the connection after NFC has been switched off.
While the connection is being opened, commands to nfcd are held in a
waiting queue. Gecko flushes the queue after it connected successfully
to nfcd.
As a side effect of this patch, the NFC thread only exists while NFC
is switched on.
2015-03-12 07:43:00 -04:00
Edgar Chen
ba72f85940
Bug 1142495 - Fix ICC build error on emulator L. r=hsinyi
2015-03-12 23:55:50 +08:00
Becker Hsieh
096178c8be
Bug 1121855 - Fix camera crash. r=aosmond
2015-03-12 20:29:00 -04:00
Ryan VanderMeulen
fd511a4b5b
Merge inbound to m-c. a=merge
2015-03-12 18:05:45 -04:00
Ryan VanderMeulen
81c8fe27e2
Merge fx-team to m-c. a=merge
2015-03-12 17:55:19 -04:00
Ryan VanderMeulen
69610736ef
Merge b2g-inbound to m-c. a=merge
2015-03-12 16:50:07 -04:00
Thomas Zimmermann
78e20fc1de
Bug 1142132
: Move helper classes of OPP manager into manager's namespace, r=shuang
...
Keeping helper classes in Bluetooth's C++ namespace creates collisions
between symbols of different managers' helpers. Moving OPP helpers into
the namespace of |BluetoothOPPManager| fixes this problem for OPP.
2015-03-12 13:07:32 +01:00
Thomas Zimmermann
8feed1dc17
Bug 1142132
: Move helper classes of A2DP manager into manager's namespace, r=shuang
...
Keeping helper classes in Bluetooth's C++ namespace creates collisions
between symbols of different managers' helpers. Moving A2DP helpers into
the namespace of |BluetoothA2dpManager| fixes this problem for A2DP.
2015-03-12 13:07:32 +01:00
Thomas Zimmermann
6871320c40
Bug 1142132
: Move helper classes of HFP manager into manager's namespace, r=shuang
...
Keeping helper classes in Bluetooth's C++ namespace creates collisions
between symbols of different managers' helpers. Moving HFP helpers into
the namespace of |BluetoothHfpManager| fixes this problem for HFP.
2015-03-12 13:07:32 +01:00
Carsten "Tomcat" Book
33766daced
merge b2g-inbound to mozilla-central a=merge
2015-03-12 12:05:07 +01:00
Carsten "Tomcat" Book
f876c2ec54
merge fx-team to mozilla-central a=merge
2015-03-12 10:17:35 +01:00
Fabrice Desré
ad5df31258
Backout c7c68c4389d6 (bug 1125713) for gaia app startup regression r=me
2015-03-11 22:50:18 -07:00
Wes Kocher
83a37cbb4c
Merge m-c to fx-team a=merge CLOSED TREE
2015-03-11 19:09:10 -07:00
Wes Kocher
43233d5ebe
Merge m-c to inbound a=merge
2015-03-11 19:06:00 -07:00
Jeff Gilbert
081ea340b8
Bug 1128001 - Workaround ANGLE DEPTH16 being DEPTH24_STENCIL8. - r=kamidphish
2015-03-11 18:23:56 -07:00
Ryan VanderMeulen
67d1ffef4b
Merge m-c to b2g-inbound. a=merge
2015-03-11 16:03:39 -04:00
Ehsan Akhgari
3817356272
Bug 1142195 - Remove some unused class declarations in the DOM Cache code; r=bkelly
2015-03-11 16:46:15 -04:00
Ehsan Akhgari
da62127bf4
Bug 1140658 - Part 8: Disable the service worker part of these tests on b2g while bug 1137683 gets fixed; r=bkelly
2015-03-11 16:46:04 -04:00
Ben Kelly
a246c9c32f
Bug 1140658 - Part 7: Close underlying file stream in ReadStream before reporting closed; r=ehsan
2015-03-11 16:45:35 -04:00
Ehsan Akhgari
83a61e3d40
Bug 1140658 - Part 6: Randomize the URL of the ServiceWorker script in order to work around bug 1141256 for now
2015-03-11 16:45:08 -04:00
Ehsan Akhgari
64ac3421d2
Bug 1140658 - Part 5: Remove test_cache_quick_close.html because it makes no sense after bug 1131353; r=bkelly
2015-03-11 16:45:06 -04:00
Ehsan Akhgari
03a8fa96f9
Bug 1140658 - Part 4: Port test_cache_add.html to the new mini-framework; r=bkelly
2015-03-11 16:45:05 -04:00
Ehsan Akhgari
c358837247
Bug 1140658 - Part 3: Port test_cache.html to the new mini-framework; r=bkelly
2015-03-11 16:45:03 -04:00
Ehsan Akhgari
426fd1214e
Bug 1140658 - Part 2: Merge test_cache.js and test_cache_frame.html; r=bkelly
2015-03-11 16:45:01 -04:00
Ehsan Akhgari
f9599b5937
Bug 1140658 - Part 1: Create a mini-framework for running tests in the worker, service worker and window contexts; r=bkelly
2015-03-11 16:45:00 -04:00
Sotaro Ikeda
4990e78217
Bug 1137515 part 2 - Change to media r=jesup
2015-03-11 12:32:38 -07:00
Jan-Ivar Bruaroey
d56642e463
Bug 1136871 - cleanup RtpSenders accounting to not rely on streams r=mt
2015-03-11 12:24:38 -04:00
Andrew Osmond
a0bbbdd643
Bug 1139027 - Permit running of camera mochitests on B2G desktop. r=mikeh
2015-03-10 19:39:49 -04:00
Carsten "Tomcat" Book
616c496456
Merge mozilla-central to b2g-inbound
2015-03-11 13:10:46 +01:00
Carsten "Tomcat" Book
fc96823a4a
merge mozilla-inbound to mozilla-central a=merge
2015-03-11 12:46:07 +01:00
Carsten "Tomcat" Book
c76822075f
merge b2g-inbound to mozilla-central a=merge
2015-03-11 12:43:13 +01:00
Chris Pearce
6adbe7ed51
Bug 1141883 - Add more logging to help debugging EME. r=edwin
2015-03-11 17:02:08 +13:00
Sotaro Ikeda
45f6dc0032
Bug 1141311 - Add async mode support to GonkNativeWindow on Lollipop Gonk r=pchang
2015-03-10 20:39:23 -07:00
Wes Kocher
f87c38fe16
Merge m-c to inbound a=merge CLOSED TREE
2015-03-10 16:11:23 -07:00
Wes Kocher
f303b4d81c
Merge b2g-inbound to m-c a=merge CLOSED TREE
2015-03-10 15:44:53 -07:00
Garvan Keeley
e303055e65
bug 1139012 - telemetry for MLS vs win8 geolocation response. r=cpeterson
2015-03-10 12:47:42 -04:00
Garvan Keeley
9d6dbe7ede
Bug 1129633 - part1. Use win8 geolocation with a fallback to MLS - r=m_kato
2015-03-10 12:47:40 -04:00
Fernando Jimenez
485e72eb54
Bug 1129650 - Touching navigator.mozId causes an error NS_ERROR_FACTORY_NOT_REGISTERED. r=baku
2015-03-10 17:25:39 +01:00
Carsten "Tomcat" Book
b3a1935b89
Merge mozilla-central to b2g-inbound
2015-03-10 14:07:36 +01:00
Carsten "Tomcat" Book
6f7826c5fc
merge mozilla-inbound to mozilla-central a=merge
2015-03-10 13:54:35 +01:00
Thomas Zimmermann
a1c98c3c72
Bug 1140383: Add fast path for NFC:QueryInfo, r=allstars.chh
...
Messages of type NFC:QueryInfo return local RF state. We don't need
the NFC Service, so we can return early.
2015-03-10 13:51:57 +01:00
Thomas Zimmermann
12be16a19b
Bug 1137151: Marked destructors of ref-counted Bluetooth classes as protected, r=shuang
2015-03-10 13:44:02 +01:00
Thomas Zimmermann
da2f511ba3
Bug 1137151: Marked destructors of ref-counted audio-manager classes as protected, r=dhylands
2015-03-10 13:44:02 +01:00
Thomas Zimmermann
5af74a2d51
Bug 1137151: Marked destructors of ref-counted time-zone classes as protected, r=dhylands
2015-03-10 13:44:02 +01:00
Thomas Zimmermann
1404dafaff
Bug 1137151: Marked destructors of ref-counted MTP classes as protected, r=dhylands
2015-03-10 13:44:02 +01:00
Thomas Zimmermann
5091c66c40
Bug 1137151: Marked destructors of ref-counted auto-mounter classes as protected, r=dhylands
2015-03-10 13:44:02 +01:00
Thomas Zimmermann
356098eaa9
Bug 1137151: Marked destructors of refcounted FM-radio classes as protected, r=pzhang
2015-03-10 13:44:02 +01:00
Thomas Zimmermann
505e0009d7
Bug 1137151: Marked destructor of |MozNDEFRecord| as protected, r=allstars.chh
2015-03-10 13:44:01 +01:00
Thomas Zimmermann
c684ae664e
Bug 1137151: Marked destructor of |MuxerOperation| as protected, r=sotaro
2015-03-10 13:44:01 +01:00
Thomas Zimmermann
f87dc13636
Bug 1137151: Remove ref-counting from |OMXVideoEncoder| r=sotaro
...
Reference counting in |OMXVideoEncoder| is used inconsistently any actually
not necessary. This patch removed the code. Users are converted to auto
pointers.
2015-03-10 13:44:01 +01:00
Thomas Zimmermann
1cc193d867
Bug 1137151: Marked destructor of |android::MediaCodecReader| as protected, r=sotaro
2015-03-10 13:44:01 +01:00
Yoshi Huang
e78f29ee9c
Bug 1141457 - Part 3: add a CommandMsgTable. r=dimi
...
From 7650a8e6a0ab634b90c85c0fa85a096e7d0f4ec9 Mon Sep 17 00:00:00 2001
---
dom/nfc/gonk/Nfc.js | 36 +++++++++++++-----------------------
1 file changed, 13 insertions(+), 23 deletions(-)
2015-03-10 17:06:56 +08:00
Yoshi Huang
a24e6525de
Bug 1141457 - Part 2: add isP2P for writeNDEF. r=dimi
...
From 35af6fe22fa075ecef92cd84e2ce22357c9c395f Mon Sep 17 00:00:00 2001
---
dom/nfc/NfcContentHelper.js | 5 +++--
dom/nfc/gonk/Nfc.js | 1 -
dom/nfc/nsINfcContentHelper.idl | 5 ++++-
dom/nfc/nsNfc.js | 4 ++--
4 files changed, 9 insertions(+), 6 deletions(-)
2015-03-10 16:49:08 +08:00
Bob Owen
9a4eb936ac
Bug 1137166: Change the Content moreStrict sandbox pref to an integer to indicate the level of sandboxing. r=tabraldes
2015-03-10 08:03:12 +00:00
Carsten "Tomcat" Book
465da5e174
Backed out changeset c96b6474bdac (bug 1140658) for m1 crashes
2015-03-10 09:01:47 +01:00
Carsten "Tomcat" Book
a69d22a4ab
Backed out changeset 8827f51084f1 (bug 1140658)
2015-03-10 09:01:10 +01:00
Carsten "Tomcat" Book
eb79c742fc
Backed out changeset 0438058b908a (bug 1140658)
2015-03-10 09:01:08 +01:00
Carsten "Tomcat" Book
a4680f38a0
Backed out changeset 2e62e8ce8c3e (bug 1140658)
2015-03-10 09:01:07 +01:00
Carsten "Tomcat" Book
41ffc16209
Backed out changeset f646f28b05d6 (bug 1140658)
2015-03-10 09:01:05 +01:00
Carsten "Tomcat" Book
da4674ff7e
Backed out changeset 7d91550919d2 (bug 1140658)
2015-03-10 09:01:00 +01:00
Xidorn Quan
73f76ee8c6
Bug 1130891 part 4 - Do copy with ruby when the whole selection is inside ruby. r=smaug
2015-03-10 17:11:55 +11:00
Xidorn Quan
2fc35acb99
Bug 1130891 part 3 - Add param to HTMLCopy to allow copy with ruby annotation. r=smaug
2015-03-10 17:11:55 +11:00
Xidorn Quan
b1b2bf17d4
Bug 1130891 part 2 - Add option in document encoder for including ruby annotation in plain text. r=roc
2015-03-10 17:11:55 +11:00
Xidorn Quan
2c36da3202
Bug 1130891 part 1 - Add W3C HTML5 ruby tags to atom list. r=smaug
2015-03-10 17:11:55 +11:00
Randell Jesup
e52273cce6
Bug 1130150: mSources update r=roc
2015-03-10 01:08:03 -04:00
Ryan VanderMeulen
1d88bc3c03
Merge m-c to fx-team. a=merge
...
CLOSED TREE
2015-03-11 16:05:05 -04:00
Mike de Boer
f7f8346239
Bug 1139907: show WebRTC screen sharing notification icon in Hello conversation window and globally when tab sharing is active. r=jesup,florian
2015-03-11 16:34:31 +01:00
Karl Tomlinson
c3c1281c42
bug 1139874 check for shutdown before asking the reader for buffered r=bholley
2015-03-10 09:53:31 +13:00
Josh Matthews
9355a2815b
Bug 1142032 - Add a crashtest.
2015-03-11 09:31:57 -04:00
Carsten "Tomcat" Book
fcf2e0e8fd
Merge mozilla-central to mozilla-inbound
2015-03-11 13:03:47 +01:00
Carsten "Tomcat" Book
71a59a133e
Backed out changeset fdd33ef9606e (bug 969250) for m5 test failures
2015-03-11 10:33:52 +01:00
Chris Pearce
df156c7a6c
Bug 1141241 - Add nullcheck for mDecoder in WMFMediaDataDecoder::ProcessDrain(). r=mattwoodrow
2015-03-11 22:01:19 +13:00
Jed Davis
f2e1032764
Bug 1140714 - Pass through remote NS_OpenAnonymousTemporaryFile failure to caller. r=billm
2015-03-10 10:32:00 +01:00
Boris Zbarsky
cb2a1d6e2a
Bug 453969. Fix the race in test_bug382113.html so we don't set our child-onload-fired boolean to false _after_ the child onload has already fired. r=froydnj
2015-03-09 21:36:47 -04:00
Wes Kocher
d0149520d8
Merge m-c to inbound a=merge CLOSED TREE
2015-03-09 19:06:17 -07:00
Ehsan Akhgari
b28bca74c4
Bug 1140658 - Part 6: Randomize the URL of the ServiceWorker script in order to work around bug 1141256 for now
2015-03-09 22:03:27 -04:00
Ehsan Akhgari
6096612cba
Bug 1140658 - Part 5: Remove test_cache_quick_close.html because it makes no sense after bug 1131353; r=bkelly
2015-03-09 22:03:27 -04:00
Ehsan Akhgari
671425dab3
Bug 1140658 - Part 4: Port test_cache_add.html to the new mini-framework; r=bkelly
2015-03-09 22:03:26 -04:00
Ehsan Akhgari
5d9585e9a8
Bug 1140658 - Part 3: Port test_cache.html to the new mini-framework; r=bkelly
2015-03-09 22:03:26 -04:00
Ehsan Akhgari
b4626b54f8
Bug 1140658 - Part 2: Merge test_cache.js and test_cache_frame.html; r=bkelly
2015-03-09 22:03:25 -04:00
Ehsan Akhgari
5cf074de16
Bug 1140658 - Part 1: Create a mini-framework for running tests in the worker, service worker and window contexts; r=bkelly
2015-03-09 22:03:25 -04:00
Wes Kocher
76b116dfbf
Merge b2g-inbound to m-c a=merge CLOSED TREE
2015-03-09 18:56:42 -07:00
Wes Kocher
0c00a67ca9
Merge inbound to m-c a=merge CLOSED TREE
2015-03-09 18:27:28 -07:00
Mike Habicher
8bac11cbbb
Bug 1141267 - register CameraThread with profiler, r=aosmond
2015-03-09 16:42:19 -04:00
Ryan VanderMeulen
314718f75b
Backed out changeset a1d51e3fea63 (bug 935838) for B2G test_udpsocket.html timeouts.
...
CLOSED TREE
2015-03-09 16:35:06 -04:00
Carsten "Tomcat" Book
c24bab5b50
Merge mozilla-central to b2g-inbound
2015-03-09 13:53:31 +01:00
Jessica Jong
d235121d69
Bug 1139805 - B2G NetworkManager: move NetworkManager.js out of EXTRA_PP_COMPONENTS in moz.build. r=echen
2015-03-09 18:20:52 +08:00
Chris Pearce
5f3b5d4291
Bug 1131387 - Enable EME, update whitelist. r=kentuckyfriedtakahe
2015-03-09 16:24:26 +13:00
Chris Pearce
a70bb6fae6
Bug 1131387 - Rename MSE whitelist pref. r=kentuckyfriedtakahe
2015-03-09 16:24:21 +13:00
Chris Pearce
86ff7e77dd
Bug 1140778 - Disable test_eme_obs_notification since it's testing functionality we're going to remove. r=test-only.
2015-03-09 16:24:18 +13:00
Jean-Yves Avenard
93b341ddf5
Bug 1128380: Make AmpleVideoFrames calculation dynamic. r=cpearce
2015-03-09 14:17:30 +11:00
Jean-Yves Avenard
89608a65b8
Bug 1128380: Add IsHardwareAccelerated implementation for AVCC and mac decoder. r=cpearce
2015-03-09 14:17:27 +11:00
Matt Woodrow
8b8eea83ee
Back out bug 1131638 (changesets 78b34d0e414a and 1b55b99dc432) for causing various video regressions
2015-03-09 16:18:32 +13:00
Phil Ringnalda
aafe5c8706
Merge m-c to m-i
2015-03-07 19:39:49 -08:00
Phil Ringnalda
12408373d5
Merge f-t to m-c, a=merge
2015-03-07 19:38:53 -08:00
Phil Ringnalda
6cdbfe4378
Backed out 3 changesets (bug 1081819) for frequent mochitest-e10s failures
...
Backed out changeset b78fd38002f5 (bug 1081819)
Backed out changeset ff063b9a1ea2 (bug 1081819)
Backed out changeset 322d60fc413e (bug 1081819)
2015-03-07 18:14:05 -08:00
Paolo Amadini
70e5ec26ad
Bug 1140435 - Part 2 - Allow JS code to provide an async stack when calling a function. r=bz
2015-03-07 13:30:34 +00:00
Paolo Amadini
eb1ed7fe09
Bug 1140435 - Part 1 - Add the asyncCause and asyncCaller properties to nsIStackFrame. r=bz
2015-03-07 13:30:34 +00:00
Alexander Surkov
e94e6e2e27
Bug 1140500 - add object attributes declaration into markup map, r=marcoz
2015-03-07 20:20:17 -05:00
Phil Ringnalda
35e249e402
Backed out 2 changesets (bug 1138181, bug 1132874) for e10s crashes in browser_windowopen_reflows.js
...
CLOSED TREE
Backed out changeset fdf4671db324 (bug 1132874)
Backed out changeset ddd5517ce7d2 (bug 1138181)
2015-03-07 14:37:31 -08:00
Ben Tian
5da78bd2e7
Bug 1128383 - [bluetooth2] Add adapter.onpairingaborted event handler, f=jocelyn, f=jaliu, r=shuang, r=bz
2015-03-06 11:55:30 +08:00
Krzysztof Mioduszewski
a89b540cf5
Bug 1139063 - [RIL] Adding "MissingResource" error msg (no logical channels available). r=echen
2015-03-06 02:08:00 +01:00
Gijs Kruitbosch
1269ca1b0b
Bug 1129219 - add learn more link for EME provider, r=MattN
2015-03-09 17:26:15 +00:00
Mike Taylor
c7cbce1e29
Bug 1136877 - Collect telemetry on SPS.max_num_ref_frames. r=jya
2015-03-06 08:18:00 -05:00
Mike Taylor
e0585984ae
Bug 1136877 - Collect telemetry on constraint_set flags from decoded SPS. r=jya
2015-03-06 08:17:00 -05:00
Ted Clancy
9ef96c1da9
Bug 1137498 - Prevent updates changing short_name. r=fabrice
2015-03-12 10:53:14 -04:00
Randell Jesup
78c5f5f0a8
Bug 1141622: bustage fix for warnings-as-errors r=bustage on a CLOSED TREE
2015-03-13 10:12:59 -04:00
Kan-Ru Chen (陳侃如)
b48625ea63
Bug 1137722 - Ensure that system message cache is refreshed before openapp. r=fabrice
2015-03-05 22:28:00 -05:00
Jan-Ivar Bruaroey
35f8685b22
Bug 1141622 - unregress screensharing frameRate by limiting hardcoded capabilities to osx camera r=jesup
2015-03-12 12:37:25 -04:00
Ms2ger
1ef1f3f81e
No bug - Add an explanatory message to the multiple-inheritance assertion in DOM bindings; rs=bz
...
Review was granted in
<http://logs.glob.uno/?c=mozilla%23content&s=5+Dec+2013&e=5+Dec+2013#c162605 >.
2015-03-13 13:01:28 +01:00
Robert O'Callahan
c12182dad4
Bug 69787. Implement MouseEvent.offsetX/Y. r=mats,smaug
2015-03-14 00:50:10 +13:00
Yoshi Huang
9a3417e8f9
Bug 1141457 - Part 1: Move SendFile to gMessageManager. r=dimi
...
From 4bb362a58ce6fb1bf32efd8a5202f28aa909f5f1 Mon Sep 17 00:00:00 2001
---
dom/nfc/gonk/Nfc.js | 31 +++++++++++++++----------------
1 file changed, 15 insertions(+), 16 deletions(-)
2015-03-05 17:43:43 +08:00
Thomas Zimmermann
196e1368f7
Bug 1134821: Detect default Bluetooth backend, r=shuang
...
This patch adds code to select the default Bluetooth backend from a
list of supported ones, by detecting the backend's availability. Some
devices are missing bluetoothd support. With the patch, bluetoothd
can be the default backend, but unsupportive devices fall back to in-
Gecko Bluedroid.
2015-03-11 10:11:48 +01:00
Szu-Yu Chen [:aknow]
e471e470ee
Bug 1140330 - Clear JSHint warning in RILContentHelper.js. r=hsinyi
2015-03-11 15:23:31 +08:00
Tooru Fujisawa
80219bece3
Bug 949971 - Set longer timeout for test_input_typing_sanitization.html. r=RyanVM
2015-03-05 15:29:59 +09:00
Boris Zbarsky
845c6d397f
Bug 1140573 part 4. Drop the parent argument from js::NewFunctionByIdWithReserved. r=waldo
2015-03-09 12:50:08 -04:00
Boris Zbarsky
7c3e3e3096
Bug 1140573 part 3. Drop the parent argument from js::NewFunctionWithReserved. r=waldo
2015-03-09 12:50:07 -04:00
Boris Zbarsky
7f7b76aa0c
Bug 1140573 part 1. Drop the parent argument from JS_NewFunction. r=waldo
2015-03-09 12:50:03 -04:00
Boris Zbarsky
8ece71391b
Bug 1140582. Remove the parent argument from JS_NewObjectWithUniqueType. r=waldo
2015-03-09 12:49:50 -04:00
Carsten "Tomcat" Book
9f406a7b29
Backed out changeset df26246112ad (bug 828137)
2015-03-09 16:49:34 +01:00
Carsten "Tomcat" Book
1d7c82f8f2
Backed out changeset c2ffd91dee7c (bug 828137)
2015-03-09 16:49:32 +01:00
Robert Longson
3f3f8fa14e
Bug 629682 - Add a better warning message for SVG-as-an-image external resources being blocked. r=dholbert
2015-03-07 09:15:23 +00:00
Ethan Tseng
1f7766fc07
Bug 1133461 - [RTSP] Remove the extra PLAY request for seek operation. r=bechen
2015-03-04 17:34:35 +08:00
Alexandre Lissy
94d57ffc0b
Bug 1138442 - Disable reftests on Mulet in parity with B2G/B2G Desktop. r=ahal
2015-03-10 02:43:00 +01:00
Bruce Sun
e5219feb81
Bug 1128386 - Handle |STATUS_FAIL| in |BondStateChangedNotification()|. r=tzimmermann
2015-03-09 17:04:02 +08:00
Jonathan Watt
a6a951afdf
Bug 1141710, part 9 - Get the timeline from the player instead of from the document. r=dholbert
2015-03-04 02:49:44 +00:00
Jonathan Watt
0434f76e45
Bug 1141710, part 8 - Create helpers to get the startTime corresponding to various points through the active duration. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
90dbf963b4
Bug 1141710, part 7 - Store the generated 'animation' property string in a global constant and reuse that constant. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
26fbd277ef
Bug 1141710, part 7 - Create helpers to get the startTime corresponding to various points through the active duration. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
8a4fc5a806
Bug 1141710, part 5 - Change from assert_true() to the new assert_unreached(). r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
c7ff95b513
Bug 1141710, part 4 - Avoid race condition when taking timestamps by reusing the original timestamp. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
f4957eb992
Bug 1141710, part 3 - Stop using ECMAScript 6 features in test_animation-player-starttime.html, since other browsers don't support them. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
8578d3f47c
Bug 1141710, part 2 - Update comments to be non-Mozilla specific. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
b6c71a13c9
Bug 1141710, part 1 - Update to the new version of addDiv() in testcommon.js. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
030adf0d4d
Bug 1141498, part 2 - Enable calls to DOM animation test's testcommon.js's addDiv() to set attributes. r=dholbert
2015-03-04 02:49:43 +00:00
Jonathan Watt
0c54c4dbad
Bug 1141498, part 1 - Stop using Node.remove() in the DOM animation test's testcommon.js. r=dholbert
2015-03-04 02:49:43 +00:00
Ehsan Akhgari
890be1ec6d
Bug 1141274 - Allocate shared workers and service workers from separate namespaces; r=nsm
...
This patch makes sure that we never reuse a WorkerPrivate belonging
to a shared worker for a service worker and vice versa.
2015-03-10 22:52:22 -04:00
Wes Kocher
3bb46ad704
Backed out 2 changesets (bug 1141498) for mochitest-1 bustage
...
Backed out changeset aab01fe57d48 (bug 1141498)
Backed out changeset d366dc0fb693 (bug 1141498)
2015-03-10 18:39:03 -07:00
Wes Kocher
a202ebbf66
Backed out 9 changesets (bug 1141710)
...
Backed out changeset 0e360d3f690b (bug 1141710)
Backed out changeset c67f9c7dfd4e (bug 1141710)
Backed out changeset 9496b1468d9c (bug 1141710)
Backed out changeset e1330135150d (bug 1141710)
Backed out changeset 0bf9f153d5bc (bug 1141710)
Backed out changeset ac29161a0f98 (bug 1141710)
Backed out changeset ee29275a1748 (bug 1141710)
Backed out changeset 255c9236bb37 (bug 1141710)
Backed out changeset fcd5ac448c46 (bug 1141710)
2015-03-10 18:38:28 -07:00
Ryan VanderMeulen
9df25bfc88
Merge inbound to m-c. a=merge
...
CLOSED TREE
2015-03-06 16:18:04 -05:00
Ryan VanderMeulen
4835e9fc1d
Merge b2g-inbound to m-c. a=merge
2015-03-06 15:50:27 -05:00
Boris Zbarsky
f22da41d9f
Bug 1122238 part 3. Drop all the DOMException-cloning and sanitization gunk we added in bug 1107592 and bug 1107953 and bug 1117242 . r=bholley
2015-03-06 01:08:06 -05:00
Boris Zbarsky
6db6b887fb
Bug 1122238 part 2. Stop caching things in JSStackFrame when we're called over Xrays. r=bholley
2015-03-06 01:08:06 -05:00
Boris Zbarsky
4aa3e9cfc3
Bug 1122238 part 1. Switch to using the new stackframe APIs in JSStackFrame. r=bholley
2015-03-06 01:08:06 -05:00
Olli Pettay
f80595bce7
Bug 1139964 part 3. Add a test. r=bzbarsky
2015-03-06 01:08:06 -05:00
Boris Zbarsky
bbe2eb820e
Bug 1139964 part 2. Add classinfo helpers for the various message manager stuff to install WebIDL Exposed=System things on those globals. r=smaug
2015-03-06 01:08:06 -05:00
Boris Zbarsky
458e969f4e
Bug 1139964 part 1. Factor out the guts of BackstagePass::Resolve and BackstagePass::Enumerate to allow reuse for other globals that want to opt in to Exposed=System WebIDL annotations. r=smaug
2015-03-06 01:08:06 -05:00
Bill McCloskey
c5baec6e18
Bug 1129223 - Introduce new, more efficient mozLayerTreeReady event (r=BenWa)
2015-03-05 22:03:23 -08:00
Bill McCloskey
6b664501ab
Bug 1129223 - Remove local mozAfterRemotePaint events (r=smaug)
2015-03-05 22:03:23 -08:00
Bill McCloskey
da8df886f8
Bug 1126089 - Assert we don't Destroy nsFrameLoader in destructor (r=smaug)
2015-03-05 22:03:22 -08:00
Bill McCloskey
0afa30b287
Bug 1139005 - Need to check the return value of AutoJSAPI.init in canvas EncodeCallback (r=ayang)
2015-03-05 22:03:22 -08:00
Phil Ringnalda
707f315c3d
Back out 2812517c3814 (bug 1115438) for build bustage
...
CLOSED TREE
2015-03-05 20:33:05 -08:00
Mike Conley
f2dec0e9f0
Bug 1088070 - Rename nsPrintingPromptServiceProxy to nsPrintingProxy. r=smaug.
2015-03-05 13:12:41 -05:00
Nikhil Marathe
60aeafafea
Bug 1133805 - Enable all serviceworker tests on all platforms except b2g. r=baku
2015-03-03 15:57:15 -08:00
Nikhil Marathe
bfaefa32a6
Bug 1053275 - Exempt ServiceWorkers from per domain thread limits. r=sicking
2015-03-03 14:30:58 -08:00
Alastor Wu
82cee2c317
Bug 1119936 - Audio from FM Radio or Music app ceases to play when switching between front/back camera. r=roc
2015-03-09 15:41:51 +08:00
Andrew McCreight
cf66099283
Bug 1114804 - Make ISupports use the standard deferred finalizer code. r=peterv
2015-03-10 08:35:47 -07:00
Kershaw Chang
db5c583893
Bug 1131444 - Close PContentBridge when content process is ended. r=khuey
2015-03-10 07:10:00 -04:00
Mike Taylor
39c7033c50
Bug 1136877 - Collect telemetry on constraint_set flags from canPlayType. r=jya
2015-03-03 08:54:00 -05:00
Carsten "Tomcat" Book
cdc8680299
Merge mozilla-central to fx-team
2015-03-09 13:50:49 +01:00
Paolo Amadini
ed01852c99
Bug 1140472 - Set an async stack when invoking promise handlers. r=bz
2015-03-09 12:36:29 +00:00
Bevis Tseng
f785035e4f
Bug 1130292 - Allow to receive WAP Push in which reserved port numbers is used. r=echen
2015-03-03 16:30:57 +08:00
Szu-Yu Chen [:aknow]
f0bcb63483
Bug 1128821 - Ensure radio on before test. r=hsinyi
2015-03-06 18:04:26 +08:00
Jocelyn Liu
b75b4537a5
Bug 1139298: Replace type int with BluetoothGattStatus enum for GATT client callbacks. r=btian
2015-03-06 17:21:00 +08:00
Fabrice Desré
cc74d2cd41
Bug 1118946 - API to provide localized properties r=ferjm,sicking
2015-03-05 22:43:57 -08:00
Wes Kocher
42d1d838fa
Merge b2g-inbound to m-c a=merge CLOSED TREE
2015-03-05 15:35:34 -08:00
Wes Kocher
8cd7de362d
Merge inbound to m-c a=merge CLOSED TREE
2015-03-05 15:17:41 -08:00
Wes Kocher
4ef44dbc63
Merge fx-team to m-c a=merge CLOSED TREE
2015-03-05 14:51:48 -08:00
Nikhil Marathe
0f61f58788
Bug 1139990 - Remove No activatingWorker warning. r=ehsan
2015-03-05 09:39:58 -08:00