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

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

Issue 6006006: Show OOM notification bar in all tabs sharing same render process (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Send reply to the sync message on the IO thread Created 9 years, 10 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) 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698