Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Unified Diff: third_party/closure_compiler/externs/automation.js

Issue 2563013003: Support audio ducking and suspension in ChromeVox (Closed)
Patch Set: Support audio ducking and suspension in ChromeVox Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/closure_compiler/externs/automation.js
diff --git a/third_party/closure_compiler/externs/automation.js b/third_party/closure_compiler/externs/automation.js
index fd080cbb1195544e0318db209ba24e453fdde400..ff984d852dfb9c7477844324efcb8457a1ad4c8f 100644
--- a/third_party/closure_compiler/externs/automation.js
+++ b/third_party/closure_compiler/externs/automation.js
@@ -39,6 +39,8 @@ chrome.automation.EventType = {
liveRegionChanged: '',
loadComplete: '',
locationChanged: '',
+ mediaStartedPlaying: '',
+ mediaStoppedPlaying: '',
menuEnd: '',
menuListItemSelected: '',
menuListValueChanged: '',
@@ -541,6 +543,18 @@ chrome.automation.AutomationNode.prototype.doDefault = function() {};
chrome.automation.AutomationNode.prototype.focus = function() {};
+chrome.automation.AutomationNode.prototype.resumeMedia = function() {};
+
+
+chrome.automation.AutomationNode.prototype.startDuckingMedia = function() {};
+
+
+chrome.automation.AutomationNode.prototype.stopDuckingMedia = function() {};
+
+
+chrome.automation.AutomationNode.prototype.suspendMedia = function() {};
+
+
chrome.automation.AutomationNode.prototype.showContextMenu = function() {};

Powered by Google App Engine
This is Rietveld 408576698