diff options
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h index e9465cf..78465ec 100644 --- a/chrome/browser/tab_contents/tab_contents.h +++ b/chrome/browser/tab_contents/tab_contents.h @@ -1260,6 +1260,15 @@ class TabContents : public PageNavigator, // Manages information about Geolocation API usage in this page. GeolocationSettingsState geolocation_settings_state_; + // Whether the renderer is made accessible. + // TODO(dmazzoni): http://crbug.com/25564 This is a temporary work-around + // until that bug is fixed. + bool renderer_accessible_; + + // Keep track of if we've already requested the accessibility tree so + // we don't do it more than once. + bool requested_accessibility_tree_; + // --------------------------------------------------------------------------- DISALLOW_COPY_AND_ASSIGN(TabContents); |