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

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: code cleanup Created 10 years 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 #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
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_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698