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

Unified Diff: chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py

Issue 2768703002: Wire up an api to darken screen for accessibility (Closed)
Patch Set: Rebase. Created 3 years, 9 months 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: chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py
diff --git a/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py b/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py
index 884bd629ab8a15546acef266ac43bfa6e2a74d4f..f78f0d24689f2263b50dfa096b8f2d6670133f0b 100755
--- a/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py
+++ b/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py
@@ -41,6 +41,11 @@ def ChromeRootPath(path='.'):
return os.path.relpath(os.path.join(_CHROME_SOURCE_DIR, path))
+# AccessibilityPrivate externs file.
+_ACCESSIBILITY_PRIVATE_EXTERNS = (
+ ChromeRootPath(
+ 'third_party/closure_compiler/externs/accessibility_private.js'))
+
# Automation API externs file.
_AUTOMATION_EXTERNS = (
ChromeRootPath('third_party/closure_compiler/externs/automation.js'))
@@ -61,6 +66,7 @@ _COMMON_EXTERNS = [
CVoxPath('chromevox/background/externs.js'),
CVoxPath('chromevox/injected/externs.js'),
CVoxPath('host/chrome/externs.js'),
+ _ACCESSIBILITY_PRIVATE_EXTERNS,
_AUTOMATION_EXTERNS,
_CHROME_EXTENSIONS_EXTERNS,
_METRICS_PRIVATE_EXTERNS]

Powered by Google App Engine
This is Rietveld 408576698