Matthew Gregan
|
03b6f26ca7
|
Bug 855130 - Implement URL::createObjectURL overload for
MediaSources. Add MediaSources to HostObjectProtocolHandler. Make
MediaSource a real interface. r=khuey
|
2013-06-21 15:15:15 +12:00 |
|
Matthew Gregan
|
d77cb6c12b
|
Bug 855130 - Implement a minimal working subset of the Media Source
Extensions specification. r=roc
|
2013-06-21 15:14:42 +12:00 |
|
Phil Ringnalda
|
84742fd7a7
|
Backed out 5fa1f7715c19:7a300d1d1b23 (bug 855130) for Windows build failures
CLOSED TREE
|
2013-07-01 21:23:37 -07:00 |
|
Matthew Gregan
|
e3fa0f9357
|
Bug 855130 - Implement URL::createObjectURL overload for MediaSources. r=khuey
---
content/base/public/nsHostObjectProtocolHandler.h | 26 +++++++++
content/base/src/nsHostObjectProtocolHandler.cpp | 65 +++++++++++++++++------
content/base/src/nsHostObjectURI.h | 5 +-
content/media/mediasource/MediaSource.cpp | 1 +
content/media/mediasource/MediaSource.h | 7 +++
dom/base/URL.cpp | 12 +++++
dom/base/URL.h | 7 +++
dom/webidl/URL.webidl | 6 +++
layout/build/nsLayoutModule.cpp | 4 ++
9 files changed, 116 insertions(+), 17 deletions(-)
|
2013-07-02 15:46:49 +12:00 |
|
Matthew Gregan
|
cc58eb952e
|
Bug 855130 - Implement a minimal working subset of the Media Source Extensions API. r=roc
---
content/media/mediasource/AsyncEventRunner.h | 35 ++
content/media/mediasource/Makefile.in | 18 +
content/media/mediasource/MediaSource.cpp | 395 +++++++++++++++++++++
content/media/mediasource/MediaSource.h | 127 +++++++
.../media/mediasource/MediaSourceInputAdapter.cpp | 176 +++++++++
.../media/mediasource/MediaSourceInputAdapter.h | 43 +++
content/media/mediasource/SourceBuffer.cpp | 249 +++++++++++++
content/media/mediasource/SourceBuffer.h | 115 ++++++
content/media/mediasource/SourceBufferList.cpp | 143 ++++++++
content/media/mediasource/SourceBufferList.h | 79 +++++
content/media/mediasource/moz.build | 24 ++
content/media/moz.build | 2 +
dom/bindings/Bindings.conf | 13 +
dom/dom-config.mk | 1 +
dom/webidl/MediaSource.webidl | 38 ++
dom/webidl/SourceBuffer.webidl | 44 +++
dom/webidl/SourceBufferList.webidl | 17 +
dom/webidl/WebIDL.mk | 3 +
layout/build/Makefile.in | 4 +
modules/libpref/src/init/all.js | 3 +
20 files changed, 1529 insertions(+)
create mode 100644 content/media/mediasource/AsyncEventRunner.h
create mode 100644 content/media/mediasource/Makefile.in
create mode 100644 content/media/mediasource/MediaSource.cpp
create mode 100644 content/media/mediasource/MediaSource.h
create mode 100644 content/media/mediasource/MediaSourceInputAdapter.cpp
create mode 100644 content/media/mediasource/MediaSourceInputAdapter.h
create mode 100644 content/media/mediasource/SourceBuffer.cpp
create mode 100644 content/media/mediasource/SourceBuffer.h
create mode 100644 content/media/mediasource/SourceBufferList.cpp
create mode 100644 content/media/mediasource/SourceBufferList.h
create mode 100644 content/media/mediasource/moz.build
create mode 100644 dom/webidl/MediaSource.webidl
create mode 100644 dom/webidl/SourceBuffer.webidl
create mode 100644 dom/webidl/SourceBufferList.webidl
|
2013-07-02 15:46:48 +12:00 |
|
Guilherme Gonçalves
|
9f334eec26
|
Bug 874587 - Add CoreLocation geolocation provider. r=dougt, r=gps, r=smichaud
|
2013-07-01 09:43:17 -04:00 |
|
Léonard Beck
|
6dcc6a8a61
|
Bug 654550 - Add a preference to disable media statistics. r = padenot,jaws
|
2013-06-11 17:23:13 +02:00 |
|
Honza Bambas
|
aa182850e8
|
Bug 883928 - Keep the old storagemanager ContractID for backward compatibility. r=ehsan, a=akeybl
|
2013-06-24 16:36:09 -04:00 |
|
Jan Varga
|
5621983a23
|
Bug 884936 - Add Blob/File support to xpcshell. r=bent
|
2013-06-21 17:15:46 +02:00 |
|
Ed Morley
|
ac3d49a744
|
Backed out changeset 96036434bb78 (bug 875289) for mochitest-chrome failures on a CLOSED TREE
--HG--
rename : dom/promise/Promise.cpp => dom/future/Future.cpp
rename : dom/promise/Promise.h => dom/future/Future.h
rename : dom/promise/PromiseCallback.cpp => dom/future/FutureCallback.cpp
rename : dom/promise/PromiseCallback.h => dom/future/FutureCallback.h
rename : dom/promise/PromiseResolver.cpp => dom/future/FutureResolver.cpp
rename : dom/promise/PromiseResolver.h => dom/future/FutureResolver.h
rename : dom/promise/Makefile.in => dom/future/Makefile.in
rename : dom/promise/moz.build => dom/future/moz.build
rename : dom/promise/tests/Makefile.in => dom/future/tests/Makefile.in
rename : dom/promise/tests/moz.build => dom/future/tests/moz.build
rename : dom/promise/tests/test_promise.html => dom/future/tests/test_future.html
rename : dom/promise/tests/test_resolve.html => dom/future/tests/test_resolve.html
rename : dom/webidl/Promise.webidl => dom/webidl/Future.webidl
|
2013-06-20 11:20:49 +01:00 |
|
Andrea Marchesini
|
48c75b0ef5
|
Bug 875289 - Renaming Future to Promise, r=mounir
--HG--
rename : dom/future/Makefile.in => dom/promise/Makefile.in
rename : dom/future/Future.cpp => dom/promise/Promise.cpp
rename : dom/future/Future.h => dom/promise/Promise.h
rename : dom/future/FutureCallback.cpp => dom/promise/PromiseCallback.cpp
rename : dom/future/FutureCallback.h => dom/promise/PromiseCallback.h
rename : dom/future/FutureResolver.cpp => dom/promise/PromiseResolver.cpp
rename : dom/future/FutureResolver.h => dom/promise/PromiseResolver.h
rename : dom/future/moz.build => dom/promise/moz.build
rename : dom/future/tests/Makefile.in => dom/promise/tests/Makefile.in
rename : dom/future/tests/moz.build => dom/promise/tests/moz.build
rename : dom/future/tests/test_future.html => dom/promise/tests/test_promise.html
rename : dom/future/tests/test_resolve.html => dom/promise/tests/test_resolve.html
rename : dom/webidl/Future.webidl => dom/webidl/Promise.webidl
|
2013-06-20 10:49:40 +02:00 |
|
Ehsan Akhgari
|
841ce34498
|
Backed out changeset c1596bee956c (bug 884279) because of build bustage
--HG--
rename : dom/promise/Promise.cpp => dom/future/Future.cpp
rename : dom/promise/Promise.h => dom/future/Future.h
rename : dom/promise/PromiseCallback.cpp => dom/future/FutureCallback.cpp
rename : dom/promise/PromiseCallback.h => dom/future/FutureCallback.h
rename : dom/promise/PromiseResolver.cpp => dom/future/FutureResolver.cpp
rename : dom/promise/PromiseResolver.h => dom/future/FutureResolver.h
rename : dom/promise/Makefile.in => dom/future/Makefile.in
rename : dom/promise/moz.build => dom/future/moz.build
rename : dom/promise/tests/Makefile.in => dom/future/tests/Makefile.in
rename : dom/promise/tests/moz.build => dom/future/tests/moz.build
rename : dom/promise/tests/test_promise.html => dom/future/tests/test_future.html
rename : dom/promise/tests/test_resolve.html => dom/future/tests/test_resolve.html
rename : dom/webidl/Promise.webidl => dom/webidl/Future.webidl
|
2013-06-19 21:57:57 -04:00 |
|
Andrea Marchesini
|
476be46aaf
|
Bug 884279 - Rename Future to Promise. r=mounir
--HG--
rename : dom/future/Makefile.in => dom/promise/Makefile.in
rename : dom/future/Future.cpp => dom/promise/Promise.cpp
rename : dom/future/Future.h => dom/promise/Promise.h
rename : dom/future/FutureCallback.cpp => dom/promise/PromiseCallback.cpp
rename : dom/future/FutureCallback.h => dom/promise/PromiseCallback.h
rename : dom/future/FutureResolver.cpp => dom/promise/PromiseResolver.cpp
rename : dom/future/FutureResolver.h => dom/promise/PromiseResolver.h
rename : dom/future/moz.build => dom/promise/moz.build
rename : dom/future/tests/Makefile.in => dom/promise/tests/Makefile.in
rename : dom/future/tests/moz.build => dom/promise/tests/moz.build
rename : dom/future/tests/test_future.html => dom/promise/tests/test_promise.html
rename : dom/future/tests/test_resolve.html => dom/promise/tests/test_resolve.html
rename : dom/webidl/Future.webidl => dom/webidl/Promise.webidl
|
2013-06-19 20:57:38 -04:00 |
|
Ted Mielczarek
|
ec8eea352e
|
bug 690935 - implement navigator.getGamepads(). r=smaug
--HG--
rename : content/events/src/nsDOMGamepad.cpp => dom/gamepad/Gamepad.cpp
rename : content/events/src/nsDOMGamepad.h => dom/gamepad/Gamepad.h
rename : dom/system/GamepadService.cpp => dom/gamepad/GamepadService.cpp
rename : dom/system/GamepadService.h => dom/gamepad/GamepadService.h
extra : rebase_source : da536e09d6c09c605db28e4af4ccccf824efc20d
|
2012-02-15 19:47:13 -05:00 |
|
Boris Zbarsky
|
6fdf3531f9
|
Bug 884109. Remove GetDocumentFromCaller from NS_NewHTMLImage/OptionElement and remove the XPCOM-y bits for creating those, since WebIDL bindings don't use those. r=smaug
|
2013-06-19 10:24:37 -04:00 |
|
Andrea Marchesini
|
6e4cb51a64
|
Bug 856410 - Implement futures - Part 1: Constructor, webidl, Done(). r=mounir, r=bz
|
2013-06-11 21:41:21 -04:00 |
|
Martin Stransky
|
d8da1b5a38
|
Bug 877626 - Port GTK2 to GTK3 - build config, rest of the tree. r=karlt
|
2013-06-12 08:04:28 -04:00 |
|
Ehsan Akhgari
|
16c535940e
|
Backed out changeset 149475141471 (bug 877626) for apparently breaking mochitest-4 on Linux
Landed on a CLOSED TREE
|
2013-06-11 19:23:37 -04:00 |
|
Martin Stransky
|
b689917b78
|
Bug 877626 - Port GTK2 to GTK3 - build config, rest of the tree. r=karlt
|
2013-06-11 15:09:29 -04:00 |
|
Benjamin Smedberg
|
f470a6d661
|
Bug 875454 - Rework handling of per-site plugin permissions in objectloadingcontent such that users can disable or enable plugins per-site no matter what their "global" permission is (currently only plugins marked click-to-activate globally honor per-site overrides). Also change the pageInfo UI such that "use default" is separate from the explicit click-to-play setting. r=jschoenick/jaws
--HG--
extra : rebase_source : e5bfba45eaa5619d695c484573b90303cc113181
|
2013-06-11 10:58:43 -04:00 |
|
Shelly Lin
|
7542f6105f
|
Bug 842243 - Part 3: Add TrackEncoder.h/.cpp; Base class for audio/video track encoder. r=roc
|
2013-05-17 19:16:36 +08:00 |
|
Edwin Flores
|
3e14a71748
|
Bug 859199 - Load GStreamer libraries at runtime r=doublec
|
2013-06-11 14:13:09 +12:00 |
|
Sotaro Ikeda
|
357c151486
|
Bug 871485 - Share hw codec between applications/tasks. r=mwu, r=doublec, r=roc
|
2013-06-10 08:22:05 -04:00 |
|
Jeff Gilbert
|
7ae688e41d
|
Bug 870232 - Enable 'webgl' requests for Desktop FF. - r=bjacob
|
2013-06-07 17:44:51 -07:00 |
|
Drew Willcoxon
|
8b31a8953a
|
Bug 856270 - Update spell checking to use nsIContentPrefService2 (part 1: core changes). r=ehsan, sr=gavin
|
2013-06-05 17:07:54 -07:00 |
|
David Zbarsky
|
b7eb88a6d3
|
Bug 879017: Remove some unneeded CIDs r=bz
|
2013-06-03 23:05:16 -07:00 |
|
Daniel Holbert
|
88347819cd
|
Bug 878205: Remove unused & no-longer-needed perl script 'gbdate.pl' from layout/build. r=mats DONTBUILD because NPOTB
|
2013-05-31 13:20:44 -07:00 |
|
Mike Shal
|
5169c0a913
|
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
|
2013-04-23 17:54:15 -04:00 |
|
Ted Mielczarek
|
3cfd62c3d2
|
bug 871712 - make MSVC PGO opt-in per-directory, and opt-in in the directories that matter. r=glandium
|
2013-05-16 09:33:26 -04:00 |
|
Trevor Saunders
|
43ddfa5b42
|
bug 870594 - remove accessible/build/ r=bsmedberg f=surkov
|
2013-03-30 18:29:47 -04:00 |
|
Michael Wu
|
b65992d857
|
Bug 869251 - Disable omx decoder and camera on gonk-JB, r=doublec,glandium
|
2013-05-02 17:21:22 -04:00 |
|
Andrew McCreight
|
3c9c388be6
|
Bug 866151 - Clean up usage of nsCycleCollector.h and nsCycleCollectorUtils.h. r=smaug,bsmedberg
--HG--
rename : xpcom/base/nsCycleCollector.h => xpcom/glue/nsCycleCollectionJSRuntime.h
|
2013-04-30 10:41:22 -07:00 |
|
Justin Lebar
|
b9b9b91ceb
|
Bug 844323 - Part 2 (The Main Event): Move ProcesPriorityManager to the main process. r=bent,khuey
|
2013-04-25 20:53:26 -04:00 |
|
Justin Lebar
|
c4bfbf9f82
|
Bug 844323 - Prelude part 3: Change ProcessPriorityManager's export directory. r=khuey
It was mozilla/dom/ipc/ before, but this changes it to mozilla/, which matches the class's namespace.
|
2013-04-25 20:53:26 -04:00 |
|
Ehsan Akhgari
|
bc6410c3a7
|
Bug 864091 - Part 2: Add the Blink Dynamics Compressor implementation to the build system; r=padenot,glandium
|
2013-04-20 23:12:00 -04:00 |
|
Mike Shal
|
df7deac25b
|
Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey
|
2013-04-16 15:24:43 -04:00 |
|
Honza Bambas
|
f29df2e52f
|
Bug 600307 - localStorage and sessionStorage implementation overhaul, r=mak77+smaug, sr=smaug
|
2013-04-15 14:38:48 +02:00 |
|
Guilherme Gonçalves
|
fe4a8705d7
|
Bug 850442 - Part 5 - Rename nsGeolocation to Geolocation. r=bz
|
2013-04-12 13:01:29 -07:00 |
|
Ryan VanderMeulen
|
60dbee1a3e
|
Backed out 2 changesets (bug 850362, bug 600307) for Windows XP leaks on a CLOSED TREE.
|
2013-04-11 17:00:28 -04:00 |
|
Honza Bambas
|
26d97547b7
|
Bug 600307 - localStorage and sessionStorage implementation overhaul, r=mak77+smaug, sr=smaug
|
2013-04-11 18:26:06 +02:00 |
|
Patrick Wang
|
4ec6b15d47
|
Bug 847744: Part 1 - Create MmsService for content process. r=vicamo
--HG--
rename : dom/mobilemessage/src/SmsServicesFactory.h => dom/mobilemessage/src/android/MmsService.h
rename : dom/mobilemessage/src/SmsServicesFactory.h => dom/mobilemessage/src/fallback/MmsService.h
|
2013-04-10 20:18:32 +08:00 |
|
Andrea Marchesini
|
e509e0114b
|
Bug 851470 - Rename nsDOMAttribute to Attr. r=Ms2ger
--HG--
rename : content/base/src/nsDOMAttribute.cpp => content/base/src/Attr.cpp
rename : content/base/src/nsDOMAttribute.h => content/base/src/Attr.h
|
2013-04-09 17:29:44 +02:00 |
|
Reuben Morais
|
d13edbaf26
|
Bug 858837 - Clean Contacts/Permissions/Settings build config files. r=khuey r=gwagner
--HG--
extra : rebase_source : 15b1a3b477975a29c2ed36d288cf8e75fdfcbdc4
|
2013-04-05 16:12:31 -07:00 |
|
Ralph Giles
|
3c48dc5399
|
Bug 857022 - Remove MOZ_MEDIA from the layout module. r=cpearce
Enable this code unconditionally.
|
2013-04-04 15:08:00 -07:00 |
|
Trevor Saunders
|
617729fa2f
|
bug 856779 - kill NS_NewPresShell() r=bz
|
2013-03-31 16:39:27 -04:00 |
|
Masatoshi Kimura
|
2550eb2430
|
Bug 858224 - Remove most MSVC exemptions for FAIL_ON_WARNINGS. r=ted feedback=dholbert
|
2013-04-07 13:45:34 +09:00 |
|
Robert O'Callahan
|
8b148be927
|
Bug 841192. Part 9: Add extra APIs to DisplayItemClip to set the current state, intersect with another DisplayItemClip, test intersection with a rect, translate, and provide easy access to a DisplayItemClip object which doesn't clip anything. r=mattwoodrow
--HG--
extra : rebase_source : 94b03b7d828c9044ac6ebbeaf51f9f0b4bde1ce2
|
2013-03-07 00:08:11 +13:00 |
|
Ms2ger
|
7236c3b171
|
Bug 853818 - Remove HTMLMediaElement CI/nsIJSNativeInitializer; r=mounir
|
2013-04-04 09:04:29 +02:00 |
|
Eitan Isaacson
|
998738aff3
|
Bug 525444 - (Part 1/3) Basic SpeechSynthesis setup and voice registration. r=smaug
--HG--
rename : content/media/webspeech/moz.build => content/media/webspeech/synth/moz.build
rename : content/media/webspeech/moz.build => content/media/webspeech/synth/test/moz.build
|
2013-04-03 15:13:16 -07:00 |
|
Eitan Isaacson
|
542d52e905
|
Bug 856370 - Add a Makefile.in in webspeech/recognition and remove webspeech top-level VPATH. r=smaug
--HG--
rename : content/media/webspeech/Makefile.in => content/media/webspeech/recognition/Makefile.in
rename : content/media/webspeech/moz.build => content/media/webspeech/recognition/moz.build
|
2013-04-03 15:13:16 -07:00 |
|