Chris Peterson
|
aca9b90afe
|
Bug 990764 - Replace MOZ_ASSUME_UNREACHABLE in dom. r=smaug
|
2014-04-20 00:36:40 -07:00 |
|
Benoit Jacob
|
89f10a3539
|
Bug 987290 - Tweak AudioChannel enum conversions to please typed enums - r=ehsan
|
2014-04-25 22:34:04 -04:00 |
|
Birunthan Mohanathas
|
5f1fde8824
|
Bug 900908 - Part 3: Change uses of numbered macros in nsIClassInfoImpl.h/nsISupportsImpl.h to the variadic variants. r=froydnj
|
2014-04-27 03:06:00 -04:00 |
|
Blair McBride
|
af6be312f8
|
Backed out 2 changesets (bug 987290). r=sheriff
Backed out changeset 4ad1f662f521 (bug 987290)
Backed out changeset 080ff1f86465 (bug 987290)
|
2014-04-27 20:41:58 +12:00 |
|
Birunthan Mohanathas
|
7ac92ae5ea
|
Bug 900903 - Part 2: Change uses of numbered macros in nsCycleCollectionParticipant.h to the variadic variants. r=smaug
|
2014-04-25 12:49:00 -04:00 |
|
Benoit Jacob
|
84ac31dc36
|
Bug 987290 - Tweak AudioChannel enum conversions to please typed enums - r=ehsan
|
2014-04-25 22:34:04 -04:00 |
|
Marco Chen
|
3dd503760b
|
Bug 999350 - Change initial values of AudioChannelService::mCurrentHigherChannel and mCurrentVisibleHigherChannel to -1 and add test case for audio-channel-change & visible-audio-channel-change of mozChromeEvent. r=baku
|
2014-04-25 18:22:17 +08:00 |
|
Ehsan Akhgari
|
245b18874d
|
Bug 998733 - Mark the audio channel interfaces as non-scriptable; r=smaug
|
2014-04-24 12:06:12 -04:00 |
|
Andrea Marchesini
|
4266c27429
|
Bug 987064 - Remove AudioChannelType. r=roc, r=mchen, r=bent
|
2014-04-10 18:39:20 +01:00 |
|
Carsten "Tomcat" Book
|
ae409227bd
|
Backed out changeset ac06eacc2206 (bug 987064) for B2G ICS Emulator Debug Bustage on a CLOSED TREE
|
2014-04-10 13:18:18 +02:00 |
|
Andrea Marchesini
|
190cf6a2a2
|
Bug 987064 - Remove AudioChannelType, r=roc, r=mchen, r=bent
|
2014-04-10 11:49:23 +01:00 |
|
Neil Rashbrook
|
936188506a
|
Bug 514280 Only use nsCOMPtr for interfaces r=bsmedberg
|
2014-04-03 23:06:26 +01:00 |
|
Andrea Marchesini
|
0f6362d210
|
Bug 983984 - Default AudioChannel from a pref, r=ehsan, r=roc, r=mchen
|
2014-03-20 10:45:55 +00:00 |
|
Andrea Marchesini
|
b59dd46208
|
Bug 923247 - patch 3 - audio-active/inactive notifications per window, r=ehsan, r=roc
--HG--
rename : content/html/content/test/wakelock.ogg => dom/base/test/audio.ogg
|
2014-03-11 10:47:25 +00:00 |
|
Andrea Marchesini
|
47c5c73d70
|
Bug 923247 - patch 2 - mute and volume per window, r=ehsan, r=roc
|
2014-03-11 10:46:55 +00:00 |
|
Andrea Marchesini
|
c68b0b05cf
|
Bug 923247 - patch 1 - window in the AudioChannelAgent, r=mchen
|
2014-03-11 10:46:04 +00:00 |
|
Ed Morley
|
18e659d594
|
Backed out changeset d86a702e24c0 (bug 923247) for build failures; CLOSED TREE
|
2014-03-10 17:04:25 +00:00 |
|
Ed Morley
|
98cffb45bb
|
Backed out changeset 98f7e8789561 (bug 923247)
|
2014-03-10 17:04:04 +00:00 |
|
Ed Morley
|
d084b5c701
|
Backed out changeset d19f076a7451 (bug 923247)
|
2014-03-10 17:04:01 +00:00 |
|
Andrea Marchesini
|
01c3c87c43
|
Bug 923247 - patch 3 - audio-active/inactive notifications per window, r=ehsan, r=roc
--HG--
rename : content/html/content/test/wakelock.ogg => dom/base/test/audio.ogg
|
2014-03-10 16:36:24 +00:00 |
|
Andrea Marchesini
|
957cd4aa97
|
Bug 923247 - patch 2 - mute and volume per window, r=ehsan, r=roc
|
2014-03-10 16:36:15 +00:00 |
|
Andrea Marchesini
|
af673bd5ac
|
Bug 923247 - patch 1 - window in the AudioChannelAgent, r=mchen
|
2014-03-10 16:36:07 +00:00 |
|
Marco Chen
|
865c10599b
|
Bug 968921 - "audio-channel-change" event should consider the audio channels in the background even there is an one on the foreground. r=baku
|
2014-02-17 18:58:12 +08:00 |
|
Ehsan Akhgari
|
1b83407ce9
|
Bug 927728 - Part 1: Replace PRUnichar with char16_t; r=roc
This patch was automatically generated by the following script:
#!/bin/bash
# Command to convert PRUnichar to char16_t
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*modules/libmar*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name prtypes.h \
! -name Char16.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRUnichar char16_t
|
2014-01-04 10:02:17 -05:00 |
|
Bruce Sun
|
37b4247967
|
Bug 947856 - Mute the background content audio channel when playing any foreground normal video channel. r=mchen
|
2013-12-16 13:08:03 +08:00 |
|
Birunthan Mohanathas
|
68b00083fd
|
Bug 713082 - Part 1: Remove unnecessary Util.h includes. r=Waldo
|
2013-12-08 21:52:33 -05:00 |
|
Randy Lin
|
2392de7e85
|
Bug 854753 - [B2G][Audio] Implement SpeakerManager API. r=amarchesini, sr=jonas
|
2013-11-25 12:50:03 +13:00 |
|
Michael Shuen
|
38579ae20b
|
Bug 940185 - Build dom/audiochannel in unified mode. r=bzbarsky
|
2013-11-19 10:37:58 -05:00 |
|
Mike Hommey
|
2812d11fce
|
Bug 939632 - Remove LIBRARY_NAME for leaf libraries. r=gps
Landing on a CLOSED TREE.
|
2013-11-19 11:50:54 +09:00 |
|
Mike Hommey
|
e06d795c71
|
Bug 939074 - Remove most LIBXUL_LIBRARY. rs=gps
|
2013-11-19 11:48:10 +09:00 |
|
Mike Hommey
|
e80e877ab7
|
Bug 939044 - Remove most definitions of MODULE. r=mshal
|
2013-11-19 11:47:39 +09:00 |
|
Mike Hommey
|
ffe0380912
|
Bug 935881 - Use FINAL_LIBRARY for all (fake) libraries that end up linked in a single other library. r=gps
|
2013-11-19 11:47:14 +09:00 |
|
Tom Schuster
|
4478f5b384
|
Bug 933834 - Rename and handlify JS_ValueToString. r=terrence,bz
|
2013-11-16 13:31:36 +01:00 |
|
Ms2ger
|
cca4d45da6
|
Backout changesets ded0d64f6786:03f041d03f24 and 30cbd1abde1a (bug 935696, bug 933834 and bug 939194) for build bustage.
|
2013-11-17 16:39:25 +01:00 |
|
Tom Schuster
|
bc757ef965
|
Bug 933834 - Rename and handlify JS_ValueToString. r=terrence,bz
|
2013-11-16 13:31:36 +01:00 |
|
Ms2ger
|
0fdc697b63
|
No bug - Fix some style issues in DOM code.
|
2013-11-11 09:04:41 +01:00 |
|
Mike Hommey
|
b000a846c2
|
Bug 929905 - Consolidate sources in moz.build. r=gps
|
2013-10-25 08:23:05 +09:00 |
|
Brian O'Keefe
|
9c9d71fddb
|
Bug 928709 - Convert chromium-config.mk to mozbuild, r=mshal
|
2013-10-02 13:17:55 -04:00 |
|
Marco Chen
|
d73eb3e70b
|
Bug 915507 - Modify class Agent to inherit nsSupportsWeakReference then circular reference between Agent & AudioChannelAgent can be released. r=baku
|
2013-10-15 16:55:37 +08:00 |
|
Marco Chen
|
d0b7711dd9
|
Bug 923173 - Use NS_WARNING for unexpected name to avoid crashing. r=ehsan
|
2013-10-14 18:45:35 +08:00 |
|
Bruce Sun
|
1a1ac42c57
|
Bug 855208: Allow one newly created content channel to play in the background. r=mchen
|
2013-09-17 15:46:06 +08:00 |
|
Andrea Marchesini
|
98d069099d
|
Bug 923776 - AudioChannelService should not send notifications and/or use callbacks when XPCOM is shutting down, r=ehsan
|
2013-10-08 08:30:04 +02:00 |
|
Andrea Marchesini
|
fae74e4567
|
Bug 923704 - AudioChannelService should check if obs is null before using it, r=ehsan
|
2013-10-08 08:27:23 +02:00 |
|
Andrea Marchesini
|
d80fda2e51
|
Bug 923497 - Crash in AudioChannelService when the browser is closed, r=ehsan
|
2013-10-03 14:40:53 -04:00 |
|
Ms2ger
|
f4153f40d4
|
Bug 900980 - Part a: Move unconditional assignments to EXPORT_LIBRARY to moz.build; rs=gps
|
2013-10-03 09:11:13 +02:00 |
|
Ehsan Akhgari
|
0e7c9d39cd
|
Bug 920292 - Part 1: Stop passing string literals as the first argument to MOZ_ASSERT; r=Waldo
|
2013-10-01 08:25:08 -04:00 |
|
Nathan Froyd
|
e8316ed759
|
Bug 914826 - part 4 - fix source files that were bootlegging XPCOM do_* functions via generated ipdl headers; r=ehsan
|
2013-09-10 16:56:05 -04:00 |
|
JW Wang
|
3524a3c64f
|
Bug 894249 - Add ability to associate video with a channel so that it can interrupt the background content channel. r=mchen, r=kinetik, r=bent
|
2013-09-18 11:46:22 +08:00 |
|
Marco Chen
|
0e5017116a
|
Bug 823273 - Part 5: Music volume should be faded when notification sound is on going - Update tests. r=baku
|
2013-09-02 17:45:44 +08:00 |
|
Marco Chen
|
aef0c55ac6
|
Bug 823273 - Part 1: Music volume should be faded when notification sound is on going - AudioChannel changes. r=baku
|
2013-09-02 17:45:44 +08:00 |
|