| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |