summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-21 22:59:45 +0000
committerjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-21 22:59:45 +0000
commit090b98d8ea1c8c5099a6ff010d39ccf6088e9ed1 (patch)
treee0795c9ad392bffe1bb7e9bd1dc7fb29a4f3f882 /chrome/common
parent921cd0cc14715c394d4429d8f5e520a8933fee15 (diff)
downloadchromium_src-090b98d8ea1c8c5099a6ff010d39ccf6088e9ed1.zip
chromium_src-090b98d8ea1c8c5099a6ff010d39ccf6088e9ed1.tar.gz
chromium_src-090b98d8ea1c8c5099a6ff010d39ccf6088e9ed1.tar.bz2
Temporary disabling accessibility in the renderer to work-around bug 1432077 which causes a crasher on tablet PCs (which for some reason issue WM_GETOBJECT messages).
Once that bug is fixed (John is currently working on it), then we can reenable it. BUG=1432077 Review URL: http://codereview.chromium.org/7823 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3697 0039d316-1c4b-4281-b951-d872f2087c98
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__