Daniel Holbert
b300134c65
Bug 837801: Remove unused-since-it-was-added-in-2005 variable 'rv' from nsSHistory::Reload. r=smaug
2013-02-05 00:39:24 -08:00
Gene Lian
d6b75a038f
Bug 837572 - Cannot access any property by the manifest of app object. r=fabrice
2013-02-05 13:57:36 +08:00
Chris Jones
1e70773735
Bug 836198: Create a "zombie" state for PresShell and use it for the preloaded TabChild PresShell. r=bz
2013-02-04 22:38:54 -08:00
Ehsan Akhgari
81075674d3
Backed out 14 changesets (bug 804387) because of Android M2 crashes
...
Backed out changeset 80e8530f06ea (bug 804387)
Backed out changeset 3de2271ad47f (bug 804387)
Backed out changeset 00f86870931c (bug 804837)
Backed out changeset 0e3f20927c50 (bug 804387)
Backed out changeset e6ef90038007 (bug 804387)
Backed out changeset 0ad6f67a95f9 (bug 804387)
Backed out changeset d0772aba503c (bug 804387)
Backed out changeset 5477b87ff03e (bug 804387)
Backed out changeset 1d7ec5adc49f (bug 804387)
Backed out changeset 11f4d740cd6c (bug 804387)
Backed out changeset e6254d8997ab (bug 804387)
Backed out changeset 372322f3264d (bug 804387)
Backed out changeset 53d5ed687612 (bug 804387)
Backed out changeset 000b88ac40a7 (bug 804387)
2013-02-05 01:29:28 -05:00
Ehsan Akhgari
3f79e8f932
Backed out 3 changesets (bug 836076) becasue bug 804387 is getting backed out
...
Backed out changeset d567b1bb34ad (bug 836076)
Backed out changeset 51f7c9e31f9a (bug 836076)
Backed out changeset 901c735274bc (bug 836076)
--HG--
rename : content/media/AudioEventTimeline.h => content/media/webaudio/AudioEventTimeline.h
2013-02-05 01:28:38 -05:00
Ehsan Akhgari
e37353007a
Bug 836076 - Part 3: Make AudioParams call back into their owning node when they're modified; r=roc
...
We need this in order to update the MediaStreamGraph thread when an
AudioParam changes. This enables each AudioParam to be registered with
a callback from its owner node, so that the owner node can have custom
processing code for each AudioParam's mutation.
2013-01-28 18:59:29 -05:00
Ehsan Akhgari
9b629eb383
Bug 836076 - Part 2: Make it possible to send AudioEventTimeline objects as commands to the MSG thread; r=roc
2013-01-28 17:42:27 -05:00
Ehsan Akhgari
d73147686a
Bug 836076 - Part 1: Move AudioEventTimeline.h to content/media; r=roc
...
--HG--
rename : content/media/webaudio/AudioEventTimeline.h => content/media/AudioEventTimeline.h
2013-01-28 17:21:43 -05:00
Mark Hammond
e972173341
Bug 837027 - Fix social UI for a multi-provider world. r=gavin
2013-02-05 16:42:18 +11:00
Ehsan Akhgari
73b9ff03bf
Bug 804387. Part 11: Fix testcase to expect correct sample rate. r=roc
2013-01-25 16:44:28 -05:00
Ehsan Akhgari
4eea296830
Bug 804387. Part 10: Add a mechanism for ensuring that we don't attempt to allocate an input port if the input node is not hooked up to MSG yet. r=roc
2013-01-25 16:39:51 -05:00
Robert O'Callahan
dd57723337
Bug 804837. Part 9: Update WebAudio implementation to integrate with AudioNodeStream. r=ehsan
...
This is a mega-patch that was too hard to disentangle. Here's what it does:
-- Create infrastructure around AudioNode::UpdateOutputEnded to detect
when a node can no longer produce any output. When that becomes true,
disconnect it from the AudioNode graph.
-- Have AudioNode implement JSBindingFinalized to use as input in
UpdateOutputEnded.
-- Give every AudioNode a MediaStream, and give every connection
a MediaInputPort.
-- Actually play the audio that reaches the AudioContext's destination node.
-- Force AudioContext to use the audio sample rate defined by MediaStreamGraph.
-- Fix AudioBufferSourceNode's start and stop methods to possibly throw and
take default 'when' parameters.
-- Create an AudioNodeStream for AudioBufferSourceNode and give it a
AudioBufferSourceNodeEngine that does what's needed. Set parameters for
this engine in the start() and stop() methods.
-- Create AudioBuffer::GetThreadSharedChannelsForRate, which is responsible
for stealing the contents of any JS array buffers, and bundling them up
into a thread-shared read-only buffer object which can be used as
part of an AudioChunk. This method will also be responsible for
resampling and caching as necessary.
2013-02-05 12:07:25 +13:00
Robert O'Callahan
b742aee0ca
Bug 804387. Part 8: Create AudioNodeEngine and AudioNodeStream. r=jesup
...
Modifies MediaStreamGraph to always advance its time by a multiple of
WEBAUDIO_BLOCK_SIZE.
2013-01-14 11:46:57 +13:00
Robert O'Callahan
577de895c2
Bug 804387. Part 7.5: Make Web Audio tests context-rate-independent (disabling some decodeAudioData tests). r=ehsan
2013-02-05 10:57:36 +13:00
Robert O'Callahan
e52389b859
Bug 804387. Part 7.2: Let BiquadFilterNode use the actual context sample rate. r=ehsan
2013-02-05 10:55:50 +13:00
Robert O'Callahan
a0370c8996
Bug 804387. Part 7: Use a static_cast instead of dynamic check when processing ProcessedMediaStream message. r=jesup
2013-02-04 23:04:26 +13:00
Robert O'Callahan
ecee34f342
Bug 804387. Part 6: ChangeExplicitBlockerCountImpl takes a GraphTime, not a StreamTime. r=jesup
2013-02-04 23:04:26 +13:00
Robert O'Callahan
1997c7a4ae
Bug 804387. Part 5: Add MediaStream::GraphTimeToStreamTimeOptimistic and MediaStream::StreamTimeToGraphTime. r=jesup
2013-02-04 23:04:26 +13:00
Robert O'Callahan
8defcc955a
Bug 804387. Part 4: Move MediaStreamGraphImpl to its own header file. r=jesup
...
--HG--
rename : content/media/MediaStreamGraph.cpp => content/media/MediaStreamGraphImpl.h
2013-02-04 23:04:25 +13:00
Robert O'Callahan
f1afdc6271
Bug 804387. Part 3: When a global underrun happens, don't insert blocked time, just cut that time out of the entire MediaStreamGraph timeline instead. r=jesup
2013-02-04 23:04:25 +13:00
Robert O'Callahan
795183a674
Bug 804387. Part 2: Fix misleading parameter name; these are NOT exactly microseconds. r=jesup
2013-02-04 23:04:25 +13:00
Robert O'Callahan
c04c9f1ccd
Bug 804387. Part 1.5: Clean up main-thread MediaStream event listeners. r=jesup
...
There is no need for these to be independent objects in general and we
don't need to addref/release them. We can just require the caller to
remove them before they die.
We can also save some refcount churn by having
DispatchToMainThreadAfterStreamStateUpdate take already_AddRefed.
2013-02-04 23:04:24 +13:00
Robert O'Callahan
68259c6166
Bug 804387. Part 1: Make AllocateInputPort addref the returned port. r=jesup
2012-11-23 11:25:05 +13:00
Nicholas Cameron
c08ac751c5
Bug 837297; change RefCounted::dead to a define; r=waldo
2013-02-05 16:53:57 +13:00
Robert Strong
9a183a6846
Bug 767968 - Intermittent test_0201_app_launch_apply_update.js, test_0203_app_launch_apply_update.js | WindowsError: [Error 13] The process cannot access the file because it is being used by another process: '...\maintenanceservice_installer.exe'. r=bbondy
2013-02-04 17:54:13 -08:00
Robert Strong
9a0dfb1304
Bug 762032 - Intermittent test_0201_app_launch_apply_update_svc.js | WindowsError: [Error 13] The process cannot access the file because it is being used by another process: '...\ExecutableDir.tmp\bin\uninstall\helper.exe'. r=bbondy
2013-02-04 17:54:02 -08:00
Seth Fowler
0762d9279f
Bug 836155 - Replace GetCurrentFrameRect() with FrameRect(aWhichFrame). r=joe
2013-02-04 16:06:14 -08:00
Seth Fowler
41916bc9e5
Bug 836124 - Replace GetCurrentFrameIsOpaque() with [noscript] FrameIsOpaque(aWhichFrame). r=joe
2013-02-04 14:22:30 -08:00
Ryan VanderMeulen
d3c43f64f9
Merge m-c to inbound.
2013-02-04 20:23:15 -05:00
Ryan VanderMeulen
bf80942fda
Backed out changeset 31268d71c33c (bug 833143) due to bug 837843.
2013-02-04 19:25:09 -05:00
Ryan VanderMeulen
8814132fdb
Merge m-c to inbound.
2013-02-04 14:54:36 -05:00
Alexandre Poirot
d05ec351a4
Bug 836506 - Set the version on mozilla-central/master to 2.0.0.0-prerelease. r=fabrice
2013-02-04 14:48:14 -05:00
Tim Taubert
fd4f1bf01b
merge m-c to fx-team
2013-02-04 20:12:29 +01:00
Julien Wajsberg
2c63768d3e
Bug 834618 - Catch any error thrown from resolveFromOrigin. r=fabrice
2013-02-04 14:59:32 +01:00
Ryan VanderMeulen
5255de6e51
Merge the last PGO-green inbound changeset to m-c.
2013-02-04 06:51:57 -05:00
Paul Rouget
cac98f3d35
Bug 826685 - Web Console and Inspector font is (much) larger than Debugger and StyleEditor font (sourceeditor). r=msucan
2013-02-04 11:48:24 +01:00
Raymond Lee
45a5c7e3d8
Bug 834492 - Drop livemarks support from FUEL. r=mak
2013-02-04 13:53:48 +08:00
Jonathan Griffin
cbdb17ecc5
Bug 834266 - Use XPCNativeWrapper to compare elements, r=mdas
2013-02-04 11:40:51 -08:00
Benoit Girard
6071ec8fa9
Backed out changeset 3c4205be7191 (bug 823236) for M2 failures
2013-02-04 14:11:02 -05:00
Brian Nicholson
4bf7afcf81
Bug 837373 - Check for valid favicon before scaling it. r=mfinkle
2013-02-04 11:08:10 -08:00
Ehsan Akhgari
58c421702e
Export MediaBufferDecoder.h, no bug
2013-02-04 13:16:57 -05:00
Nicholas Nethercote
1670a07032
Bug 837566 - Remove js_RemoveRoot. r=terrence.
2013-02-03 20:17:34 -08:00
Phil Ringnalda
1f9c36a790
Merge the last PGO-green inbound changeset to m-c
2013-02-03 12:33:19 -08:00
Alfred Kayser
513cb2b5df
Bug 828281 - UpdateRecord in CloseOutputStream can be removed. r=michal.novotny
2013-02-03 17:09:48 +01:00
Robert Longson
0ce0423e6c
Bug 837450 - Leak with getTransformToElement. r=jwatt
2013-02-03 14:06:55 +00:00
Jonathan Kew
5c2caeadcf
bug 822266 - refresh backing scale factors after swapping frameloader contents, in case device resolutions differ. r=bz
2013-02-03 12:21:52 +00:00
Shriram Kunchanapalli
ee33189bb7
Bug 707296: Correct the length of the IndexedDB prompt timeout. r=gavin
2013-02-02 23:19:35 +05:30
Shriram Kunchanapalli
242495ed6e
Bug 702796: IndexedDB prompt should auto-dismiss after a timeout [in native fennec]. r=mbrubeck
2013-02-02 22:59:16 +05:30
Bill Gianopoulos
b9690d3a18
Bug 837395: define EAFNOSUPPORT for VC9 r=rjesup
2013-02-02 12:28:35 -05:00
Randell Jesup
39786b0d47
Bug 837421: Webrtc: Ignore second call to ConnectDataConnection r=derf
2013-02-03 00:29:04 -05:00