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

Side by Side Diff: chrome/browser/renderer_host/browser_render_process_host.h

Issue 243007: Retry r27137. Create renderers for ExtensionHosts one at a time to avoid blocking the UI. (Closed)
Patch Set: fix linux crash Created 11 years, 2 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <map> 10 #include <map>
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 159
160 // Used in single-process mode. 160 // Used in single-process mode.
161 scoped_ptr<RendererMainThread> in_process_renderer_; 161 scoped_ptr<RendererMainThread> in_process_renderer_;
162 162
163 // Buffer visited links and send them to to renderer. 163 // Buffer visited links and send them to to renderer.
164 scoped_ptr<VisitedLinkUpdater> visited_link_updater_; 164 scoped_ptr<VisitedLinkUpdater> visited_link_updater_;
165 165
166 // True iff the renderer is a child of a zygote process. 166 // True iff the renderer is a child of a zygote process.
167 bool zygote_child_; 167 bool zygote_child_;
168 168
169 // True if FastShutdownIfPossible was called and was successful.
170 bool fast_shutdown_;
171
169 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); 172 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost);
170 }; 173 };
171 174
172 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ 175 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/gtk/extension_view_gtk.cc ('k') | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698