mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Bug 1485160 - part1 : Add AudibleAutoplayChild actor. r=mconley
The AudibleAutoplayMediaOccurredObserver which I added in bug1476701 was incorrectly removed by bug1472491, it's used to notify audible autoplay event for the shield study and we should add it back. Differential Revision: https://phabricator.services.mozilla.com/D3930 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
469b620e12
commit
531d79c2a6
15
toolkit/actors/AudibleAutoplayChild.jsm
Normal file
15
toolkit/actors/AudibleAutoplayChild.jsm
Normal file
@ -0,0 +1,15 @@
|
||||
/* 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 = ["AudibleAutoplayChild"];
|
||||
|
||||
ChromeUtils.import("resource://gre/modules/ActorChild.jsm");
|
||||
|
||||
class AudibleAutoplayChild extends ActorChild {
|
||||
handleEvent(event) {
|
||||
this.mm.sendAsyncMessage("AudibleAutoplayMediaOccurred");
|
||||
}
|
||||
}
|
@ -11,6 +11,7 @@ with Files('Finder*.jsm'):
|
||||
BUG_COMPONENT = ('Toolkit', 'Find Toolbar')
|
||||
|
||||
FINAL_TARGET_FILES.actors += [
|
||||
'AudibleAutoplayChild.jsm',
|
||||
'AudioPlaybackChild.jsm',
|
||||
'BrowserChild.jsm',
|
||||
'ControllersChild.jsm',
|
||||
|
@ -100,6 +100,15 @@ ChromeUtils.import("resource://gre/modules/Services.jsm");
|
||||
const {DefaultMap} = ExtensionUtils;
|
||||
|
||||
let ACTORS = {
|
||||
AudibleAutoplay: {
|
||||
child: {
|
||||
module: "resource://gre/actors/AudibleAutoplayChild.jsm",
|
||||
events: {
|
||||
"AudibleAutoplayMediaOccurred": {},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
AudioPlayback: {
|
||||
child: {
|
||||
module: "resource://gre/actors/AudioPlaybackChild.jsm",
|
||||
|
Loading…
Reference in New Issue
Block a user