Граф коммитов

437598 Коммитов

Автор SHA1 Сообщение Дата
Paul Adenot d0ba0d8c85 Bug 1190676 - Part 12 - Fix mozCaptureStream. r=pehrsons
--HG--
extra : rebase_source : 7c65617a6a668df64672aadcda9269ae15d5d813
2015-08-27 16:13:56 +02:00
Paul Adenot 6dc1e1fd9f Bug 1190676 - Part 11 - Fix consumers: Web Speech. r=anatal,eitan
--HG--
extra : rebase_source : 1f5589c488beb6cadefbe0b3030590e33fcd292b
2015-08-25 10:30:49 +02:00
Paul Adenot 8eb4594e21 Bug 1190676 - Part 10 - Fix consumers: AudioDestinationNode. r=karlt
--HG--
extra : rebase_source : 6cbad24c90bb83b1ee44a299f8eadd8eabff53cf
2015-08-25 10:30:43 +02:00
Paul Adenot 1d89543d08 Bug 1190676 - Part 9 - Fix consumers: AudioCapture. r=roc
--HG--
extra : rebase_source : b099a3682e305c3ebe02600a08b68c9f547991f0
2015-08-25 10:29:51 +02:00
Paul Adenot 0662256535 Bug 1190676 - Part 8 - Fix consumers: CameraPreviewMediaStream. r=sotaro
--HG--
extra : rebase_source : 4eb60f8c9978fa97e2257a4153ea3f1974983d45
2015-08-25 10:29:51 +02:00
Paul Adenot 43aa8d5967 Bug 1190676 - Part 7 - Fix consumers: InputPort and HWMediaStream. r=jacheng
--HG--
extra : rebase_source : caf23951b69254c0185fb98c83bb1f3373bc0c89
2015-08-25 10:29:51 +02:00
Paul Adenot 2c70ea6a84 Bug 1190676 - Part 6 - Fix consumers: MediaManager. r=jesup
--HG--
extra : rebase_source : d7f9711c20834a8acd4e1e11ff5bfecb9f8a3c9b
2015-08-25 10:29:51 +02:00
Paul Adenot bc630a1430 Bug 1190676 - Part 5 - Fix consumers: PeerConnection. r=jesup
--HG--
extra : rebase_source : 5aa0bc3c233ee842cd983a0cd2c338bced1376db
2015-08-25 10:29:50 +02:00
Paul Adenot 73fb802f52 Bug 1190676 - Part 4 - Fix consumers: CanvasCaptureMediaStream. r=pehrsons
--HG--
extra : rebase_source : 68f5e305cd134dc4d057c3230d9a2fadb4f45e5a
2015-08-25 10:29:50 +02:00
Paul Adenot 86793c21b6 Bug 1190676 - Part 3 - Make getting a MediaStreamGraph for a channel more explicit. r=roc
Hopefully this wil also prevent getting the wrong graph.

--HG--
extra : rebase_source : 3465c29807798d237c4d289b1a88845684373de5
2015-08-25 10:17:31 +02:00
Paul Adenot f35ee39298 Bug 1190676 - Part 2 - Force explicitely passing in a MediaStreamGraph when creating a DOMMediaStream. r=roc
Hopefully this will prevent cross-graph connections.

--HG--
extra : rebase_source : 8293dc665c59c0ff6a5444918c0e51efec2c53a4
2015-08-25 10:16:41 +02:00
Paul Adenot 25b51c89e7 Bug 1190676 - Part 1 - Use the right MediaStreamGraph when setting a MediaStream as mozSrcStream on an HTMLMediaElement. r=roc
--HG--
extra : rebase_source : 450f8351390e0c9461cae90e21c9a1b135e03d67
2015-08-25 10:16:41 +02:00
Brian Birtles 1038c1e99a Bug 1194037 part 4 - Remove ticking from FlushAnimations; r=dholbert
This patch makes FlushAnimations purely responsible for posting restyles. All
ticking behavior is performed in response to an actual refresh driver tick
(currently CommonAnimationManager::WillRefresh).
2015-08-31 16:21:55 +09:00
Brian Birtles a362d9f14e Bug 1194037 part 3 - Add Animation::HasEndEventToQueue(); r=dholbert
We currently determine if we need refresh driver ticks when composing style
but sometimes we might not need ticks for composing style but we might need
one more tick in order to queue a final end event. Currently, this doesn't
seem to be a problem because FlushAnimations calls Animation::Tick where we
queue up events. When we remove the call to Animation::Tick from
FlushAnimations in order to make FlushAnimations purely responsible for
posting restyles, however, we will create a situation where we might mark an
animation collection as no longer needing refreshes and not simultaneously
queueing the corresponding event. If another animation collection is deleted in
the meantime we may trigger the code that causes us to disassociate from the
refresh driver and the corresponding event will never be dispatched.

Long-term (bug 1195180) we will check if it we can stop observing the refresh
driver and queue events in the same step. Until then, this patch adds a method
to detect this particular situation and uses it to avoid unregistering from
the refresh driver while we still have end events to queue.
2015-08-31 16:21:55 +09:00
Brian Birtles a58273cbc5 Bug 1194037 part 2 - Make WillRefresh no longer call FlushAnimations; r=dholbert
In order to support ticking animations from their timeline we want to separate
the following two methods:

CommonAnimationManager::WillRefresh - responsible for responding to refresh
  driver ticks by updating timing information and posting the necessary
  pending restyles. This is the functionality we will eventually move to
  Animation.

CommonAnimationManager::FlushAnimations - responsible simply for posting
  pending restyles.

Currently, WillRefresh calls FlushAnimations. This patch separates the two by
copying the necessary functionality into WillRefresh. Later in this patch series
we will further separate the two by removing duplicate functionality from
FlushAnimations.
2015-08-31 16:21:55 +09:00
Brian Birtles f32d302515 Bug 1194037 part 1 - Make nsAutoAnimationMutationBatch batch multiple elements at once; r=smaug
In bug 1195180 we plan to tick animations from their timeline where they
are stored in a hashtable. As a result, we will not visit them in order of
their associated target element (indeed, part of the reason we are doing
this is to support animations that do not have, or even have multiple target
elements).

The current animation mutation observer batching mechanism, however, assumes
that we visit each target element in turn and make all the necessary work at
once.  In order to support visiting animations in a potentially random order
this patch reworks the animation mutation observer batching mechanism so that
it can support batching multiple elements at once.
2015-08-31 16:21:49 +09:00
Garvan Keeley 26d2c22b42 Bug 1195854: getNeighboringCells() is deprecated on Android M. r=sebastian 2015-08-31 00:35:53 -04:00
Chris Pearce 07c5d8b53b Bug 1176145 - Expose CDM version number in keySystem string. r=edwin 2015-08-31 16:08:51 +12:00
Chris Pearce 1850678d9d Bug 1197050 - Move GMPDecoderModule up in PlatformDecoderModule::CreatePDM(). r=jya 2015-08-31 16:08:51 +12:00
Chris Pearce 2a8456892c Bug 1197064 - Don't assume positive audio frame offset in GMPAudioDecoder. r=jya 2015-08-31 16:08:51 +12:00
Chris Pearce 4253ea0ff6 Bug 1200059 - Make Adobe Primetime EME usable on MacOSX if available. r=edwin 2015-08-31 16:08:03 +12:00
Robert O'Callahan 17e4562af8 Bug 1199534. Only set TabChild canvas background for the background of root PresContexts. r=mats
--HG--
extra : commitid : 4q2ltWPrjtx
extra : rebase_source : b07067b3ffa1236b61522b477a58816a0d0c02bc
2015-08-28 15:20:10 +12:00
Ryan VanderMeulen e45a2969e5 Merge m-c to inbound. a=merge 2015-08-30 22:12:12 -04:00
Ryan VanderMeulen d6c213f0a1 Merge fx-team to m-c. a=merge 2015-08-30 22:09:02 -04:00
Nicholas Nethercote 3b6bddddf5 Bug 1198334 (follow-up) - Fix SM(e) bustage (which doesn't show up on try pushes, grr). r=bustage. 2015-08-30 17:05:38 -07:00
Xidorn Quan f40af074ca Bug 1189200 - Only clear pending fullscreen requests in inclusive descendants of the specified document in ClearPendingFullscreenRequests. r=smaug
--HG--
extra : source : a6268f26d0704037d0e84ead00f29f6e9ba1b0ec
2015-08-31 09:25:23 +10:00
Ryan VanderMeulen 2ceaec38c0 Bug 967606 - Skip test_call_start_from_end_handler.html on B2G opt. 2015-08-30 19:17:48 -04:00
Myk Melez ed37a181df Bug 1199844 - limit webapp debug logging to webapp tests; r=fabrice 2015-08-30 15:44:29 -07:00
Myk Melez 098fad4e40 Bug 1199826 - identify bug components for webapprt directories; r=marco 2015-08-30 15:44:28 -07:00
Ryan VanderMeulen 593120864b Backed out changeset db8aa4fdcba4 (bug 1142455) for making bug 1179547 nearly permafail on OSX 10.6. 2015-08-30 18:38:14 -04:00
Ryan VanderMeulen cb6f9fc8c5 Bug 1146002 - Add more Android fuzz to box-sizing-replaced-003.xht.
--HG--
extra : rebase_source : 9e40494bc663c35891300a961aadbe0272e2297a
2015-08-30 18:12:25 -04:00
Ryan VanderMeulen 32e2481e0c Bug 1178697 - Add Android fuzz to mq_print_height.xhtml.
--HG--
extra : rebase_source : f3a0fbaa043a13c486e43a5cf16d249c49f4d605
2015-08-30 18:07:44 -04:00
Ryan VanderMeulen d88af421c5 Bug 1182082 - Add Android fuzz to large-gradient-2.html.
--HG--
extra : rebase_source : 0d4aaa82f8f7a8b8701df257700ed15af2fbc622
2015-08-30 18:01:21 -04:00
Ryan VanderMeulen 836b4be423 Bug 1191270 - Skip test_audio_capture_error.html on B2G emulator builds for frequent failures.
--HG--
extra : rebase_source : b2596353ad7e415f0fef858dd71cfae5b02b1960
2015-08-30 17:56:35 -04:00
Ryan VanderMeulen 83775e2f4d Bug 1193351 - Disable various failure-prone EME tests on B2G.
--HG--
extra : rebase_source : 18b0e4b0a44d5df7450e1c4a68edb6eab3920f02
2015-08-30 17:52:04 -04:00
Ryan VanderMeulen 46150b51af Bug 1186406 - Skip test_eme_playback.html on Windows due to frequent intermittent failures.
--HG--
extra : rebase_source : 67c6f857ccbccc2096142d26e255a2e496452ea6
2015-08-30 17:47:36 -04:00
Shu-yu Guo f8c82270a9 Bug 1193583 - Fix scratchpad test that expects vars introduced by webconsole's JS evaluation to be configurable. (r=jimb)
The situation has changed.
2015-08-30 15:08:19 -07:00
Shu-yu Guo 74dcccdc3f Bug 1193583 - Fix misc XPConnect and devtools tests. (r=jorendorff) 2015-08-30 15:08:19 -07:00
Shu-yu Guo d228db207e Bug 1193583 - Fix out-of-date reftests. (r=jorendorff) 2015-08-30 15:08:19 -07:00
Shu-yu Guo b17f71092a Bug 1193583 - Rename Debugger.evalInGlobal to executeInGlobal. (r=jorendorff)
--HG--
rename : js/src/jit-test/tests/debug/Object-evalInGlobal-01.js => js/src/jit-test/tests/debug/Object-executeInGlobal-01.js
rename : js/src/jit-test/tests/debug/Object-evalInGlobal-07.js => js/src/jit-test/tests/debug/Object-executeInGlobal-07.js
rename : js/src/jit-test/tests/debug/Object-evalInGlobal-08.js => js/src/jit-test/tests/debug/Object-executeInGlobal-08.js
rename : js/src/jit-test/tests/debug/Object-evalInGlobal-10.js => js/src/jit-test/tests/debug/Object-executeInGlobal-10.js
rename : toolkit/devtools/server/tests/mochitest/test_evalInGlobal-outerized_this.html => toolkit/devtools/server/tests/mochitest/test_executeInGlobal-outerized_this.html
2015-08-30 15:08:19 -07:00
Shu-yu Guo 1194a532eb Bug 1193583 - Change the semantics of Debugger.evalInGlobal to be like executing a series of statements at the global level instead of like an indirect eval. (r=jimb)
This is to allow the web console to introduce and persist lexical
bindings on the global level. If evalInGlobal were like an indirect
eval, then no lexical bindings can escape the lexical environment of the
eval.
2015-08-30 15:08:19 -07:00
Shu-yu Guo 256fcebeb7 Bug 1193583 - Test. (r=jorendorff) 2015-08-30 15:08:19 -07:00
Shu-yu Guo b4e25ed468 Bug 1193583 - Teach Debugger tests that eval frames now always have a lexical environment. (r=jorendorff) 2015-08-30 15:08:19 -07:00
Shu-yu Guo 9228fad4d3 Bug 1193583 - Fix eval to always execute under a non-extensible lexical scope. (r=jorendorff) 2015-08-30 15:08:19 -07:00
Shu-yu Guo f48bd0b3d2 Bug 1193583 - Support emitting block scopes in the prologue. (r=jorendorff) 2015-08-30 15:08:19 -07:00
Ryan VanderMeulen fdc764760b Backed out changeset 1d2f59732f03 (bug 1195349) for test_cssColor.js failures. 2015-08-30 17:33:38 -04:00
Ryan VanderMeulen c7fdbe4d0f Backed out changeset 982be1bbebdf (bug 1199624) for Windows bustage. 2015-08-30 17:09:09 -04:00
Jacek Caban c8309c6328 Bug 1199624 - Don't use memset and memcmp in files that don't include cstring explicitly. r=briansmith 2015-08-29 07:59:00 -04:00
Ting-Yu Chou c9627afeba Bug 1194121 - Skip UpdateCommands() from initializing collapse to avoid sync IPC during app startup. r=jst 2015-08-28 15:18:56 +08:00
Nicholas Nethercote f44287005f Bug 1198334 (part 1) - Replace the opt-in FAIL_ON_WARNINGS with the opt-out ALLOW_COMPILER_WARNINGS. r=glandium.
The patch removes 455 occurrences of FAIL_ON_WARNINGS from moz.build files, and
adds 78 instances of ALLOW_COMPILER_WARNINGS. About half of those 78 are in
code we control and which should be removable with a little effort.

--HG--
extra : rebase_source : 82e3387abfbd5f1471e953961d301d3d97ed2973
2015-08-27 20:44:53 -07:00