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

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: address comments Created 9 years, 11 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 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 // A list of observers notified when page state changes. Weak references. 1339 // A list of observers notified when page state changes. Weak references.
1340 ObserverList<WebNavigationObserver> web_navigation_observers_; 1340 ObserverList<WebNavigationObserver> web_navigation_observers_;
1341 1341
1342 // Content restrictions, used to disable print/copy etc based on content's 1342 // Content restrictions, used to disable print/copy etc based on content's
1343 // (full-page plugins for now only) permissions. 1343 // (full-page plugins for now only) permissions.
1344 int content_restrictions_; 1344 int content_restrictions_;
1345 1345
1346 // All the IPC message filters for this render view. 1346 // All the IPC message filters for this render view.
1347 std::vector<IPC::Channel::Listener*> message_filters_; 1347 std::vector<IPC::Channel::Listener*> message_filters_;
1348 1348
1349 // Whether the render process ran out of memory.
1350 bool render_process_ran_out_of_memory_;
1351
1349 DISALLOW_COPY_AND_ASSIGN(TabContents); 1352 DISALLOW_COPY_AND_ASSIGN(TabContents);
1350 }; 1353 };
1351 1354
1352 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1355 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698