Chromium Code Reviews| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1342 // remember it. | 1342 // remember it. |
| 1343 bool temporary_zoom_settings_; | 1343 bool temporary_zoom_settings_; |
| 1344 | 1344 |
| 1345 // A list of observers notified when page state changes. Weak references. | 1345 // A list of observers notified when page state changes. Weak references. |
| 1346 ObserverList<WebNavigationObserver> web_navigation_observers_; | 1346 ObserverList<WebNavigationObserver> web_navigation_observers_; |
| 1347 | 1347 |
| 1348 // Content restrictions, used to disable print/copy etc based on content's | 1348 // Content restrictions, used to disable print/copy etc based on content's |
| 1349 // (full-page plugins for now only) permissions. | 1349 // (full-page plugins for now only) permissions. |
| 1350 int content_restrictions_; | 1350 int content_restrictions_; |
| 1351 | 1351 |
| 1352 // Whether the render process ran out of memory. | |
| 1353 bool renderer_ran_out_of_memory_; | |
|
antonm
2010/12/23 17:17:45
nit: it looks like you should unify---either rende
yurys
2011/01/18 13:14:17
Done.
| |
| 1354 | |
| 1352 // --------------------------------------------------------------------------- | 1355 // --------------------------------------------------------------------------- |
| 1353 | 1356 |
| 1354 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1357 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1355 }; | 1358 }; |
| 1356 | 1359 |
| 1357 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1360 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |