| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1334 // remember it. | 1334 // remember it. |
| 1335 bool temporary_zoom_settings_; | 1335 bool temporary_zoom_settings_; |
| 1336 | 1336 |
| 1337 // A list of observers notified when page state changes. Weak references. | 1337 // A list of observers notified when page state changes. Weak references. |
| 1338 ObserverList<TabContentsObserver> observers_; | 1338 ObserverList<TabContentsObserver> observers_; |
| 1339 | 1339 |
| 1340 // Content restrictions, used to disable print/copy etc based on content's | 1340 // Content restrictions, used to disable print/copy etc based on content's |
| 1341 // (full-page plugins for now only) permissions. | 1341 // (full-page plugins for now only) permissions. |
| 1342 int content_restrictions_; | 1342 int content_restrictions_; |
| 1343 | 1343 |
| 1344 // Whether the render process ran out of memory. |
| 1345 bool render_process_ran_out_of_memory_; |
| 1346 |
| 1344 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1347 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1345 }; | 1348 }; |
| 1346 | 1349 |
| 1347 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1350 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |