This repository has been archived by the owner on Nov 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1472491: Part 5n - Add AudioPlaybackChild actor. r=felipe
MozReview-Commit-ID: DtGNW4riHQX
- Loading branch information
Showing
7 changed files
with
95 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* vim: set ts=2 sw=2 sts=2 et tw=80: */ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
"use strict"; | ||
|
||
var EXPORTED_SYMBOLS = ["AudioPlaybackChild"]; | ||
|
||
ChromeUtils.import("resource://gre/modules/ActorChild.jsm"); | ||
|
||
class AudioPlaybackChild extends ActorChild { | ||
handleMediaControlMessage(msg) { | ||
let utils = this.content.windowUtils; | ||
let suspendTypes = Ci.nsISuspendedTypes; | ||
switch (msg) { | ||
case "mute": | ||
utils.audioMuted = true; | ||
break; | ||
case "unmute": | ||
utils.audioMuted = false; | ||
break; | ||
case "lostAudioFocus": | ||
utils.mediaSuspend = suspendTypes.SUSPENDED_PAUSE_DISPOSABLE; | ||
break; | ||
case "lostAudioFocusTransiently": | ||
utils.mediaSuspend = suspendTypes.SUSPENDED_PAUSE; | ||
break; | ||
case "gainAudioFocus": | ||
utils.mediaSuspend = suspendTypes.NONE_SUSPENDED; | ||
break; | ||
case "mediaControlPaused": | ||
utils.mediaSuspend = suspendTypes.SUSPENDED_PAUSE_DISPOSABLE; | ||
break; | ||
case "mediaControlStopped": | ||
utils.mediaSuspend = suspendTypes.SUSPENDED_STOP_DISPOSABLE; | ||
break; | ||
case "resumeMedia": | ||
// User has clicked the tab audio indicator to play a delayed | ||
// media. That's clear user intent to play, so gesture activate | ||
// the content document tree so that the block-autoplay logic | ||
// allows the media to autoplay. | ||
this.content.document.notifyUserGestureActivation(); | ||
utils.mediaSuspend = suspendTypes.NONE_SUSPENDED; | ||
break; | ||
default: | ||
dump("Error : wrong media control msg!\n"); | ||
break; | ||
} | ||
} | ||
|
||
observe(subject, topic, data) { | ||
if (topic === "audio-playback") { | ||
if (subject && subject.top == this.content) { | ||
let name = "AudioPlayback:"; | ||
if (data === "activeMediaBlockStart") { | ||
name += "ActiveMediaBlockStart"; | ||
} else if (data === "activeMediaBlockStop") { | ||
name += "ActiveMediaBlockStop"; | ||
} else { | ||
name += (data === "active") ? "Start" : "Stop"; | ||
} | ||
this.mm.sendAsyncMessage(name); | ||
} | ||
} | ||
} | ||
|
||
receiveMessage(msg) { | ||
if (msg.name == "AudioPlayback") { | ||
this.handleMediaControlMessage(msg.data.type); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- | ||
# vim: set filetype=python: | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
FINAL_TARGET_FILES.actors += [ | ||
'AudioPlaybackChild.jsm', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters