summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc4
-rw-r--r--chrome/common/chrome_switches.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index b751d3b..cafb6f1 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -341,5 +341,9 @@ const wchar_t kIncognito[] = L"incognito";
// operations.
const wchar_t kUseNewSafeBrowsing[] = L"new-safe-browsing";
+// Turns on the accessibility in the renderer. Off by default until
+// http://b/issue?id=1432077 is fixed.
+const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility";
+
} // namespace switches
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index b252e49..9e99a80 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -133,6 +133,8 @@ extern const wchar_t kEnableGreasemonkey[];
extern const wchar_t kIncognito[];
extern const wchar_t kUseNewSafeBrowsing[];
+extern const wchar_t kEnableRendererAccessibility[];
+
} // namespace switches
#endif // CHROME_COMMON_CHROME_SWITCHES_H__