diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-21 22:59:45 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-21 22:59:45 +0000 |
commit | 090b98d8ea1c8c5099a6ff010d39ccf6088e9ed1 (patch) | |
tree | e0795c9ad392bffe1bb7e9bd1dc7fb29a4f3f882 /chrome/browser/render_widget_host_view_win.h | |
parent | 921cd0cc14715c394d4429d8f5e520a8933fee15 (diff) | |
download | chromium_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/browser/render_widget_host_view_win.h')
-rw-r--r-- | chrome/browser/render_widget_host_view_win.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/render_widget_host_view_win.h b/chrome/browser/render_widget_host_view_win.h index 9db04ce..c47ca74 100644 --- a/chrome/browser/render_widget_host_view_win.h +++ b/chrome/browser/render_widget_host_view_win.h @@ -259,6 +259,11 @@ class RenderWidgetHostViewWin : // value returns true for is_null() if we are not recording whiteout times. TimeTicks whiteout_start_time_; + // Whether the renderer is made accessible. + // TODO(jcampan): http://b/issue?id=1432077 This is a temporary work-around + // until that bug is fixed. + bool renderer_accessible_; + DISALLOW_EVIL_CONSTRUCTORS(RenderWidgetHostViewWin); }; |