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

Side by Side Diff: chrome/browser/tab_contents/tab_contents.h

Issue 2031004: Revert 46567 - Reimplement accessibility of web content by caching the entire... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <deque> 10 #include <deque>
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 // Can be NULL in which case we defer to the request context from the 1258 // Can be NULL in which case we defer to the request context from the
1259 // profile 1259 // profile
1260 scoped_refptr<URLRequestContextGetter> request_context_; 1260 scoped_refptr<URLRequestContextGetter> request_context_;
1261 1261
1262 // Information about the language the page is in and has been translated to. 1262 // Information about the language the page is in and has been translated to.
1263 LanguageState language_state_; 1263 LanguageState language_state_;
1264 1264
1265 // Maps each frame on this page to its geolocation content settings. 1265 // Maps each frame on this page to its geolocation content settings.
1266 GeolocationContentSettings geolocation_content_settings_; 1266 GeolocationContentSettings geolocation_content_settings_;
1267 1267
1268 // Whether the renderer is made accessible.
1269 // TODO(dmazzoni): http://crbug.com/25564 This is a temporary work-around
1270 // until that bug is fixed.
1271 bool renderer_accessible_;
1272
1273 // Keep track of if we've already requested the accessibility tree so
1274 // we don't do it more than once.
1275 bool requested_accessibility_tree_;
1276
1277 // --------------------------------------------------------------------------- 1268 // ---------------------------------------------------------------------------
1278 1269
1279 DISALLOW_COPY_AND_ASSIGN(TabContents); 1270 DISALLOW_COPY_AND_ASSIGN(TabContents);
1280 }; 1271 };
1281 1272
1282 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1273 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host_view_win.cc ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698