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

Unified Diff: content/browser/utility_process_host_impl.h

Issue 18119009: Make utility process run in-process when running in single-process mode. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: undo unnecessary changes Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/renderer_host/DEPS ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/utility_process_host_impl.h
===================================================================
--- content/browser/utility_process_host_impl.h (revision 210446)
+++ content/browser/utility_process_host_impl.h (working copy)
@@ -22,6 +22,7 @@
namespace content {
class BrowserChildProcessHostImpl;
+class UtilityMainThread;
class CONTENT_EXPORT UtilityProcessHostImpl
: public NON_EXPORTED_BASE(UtilityProcessHost),
@@ -78,6 +79,9 @@
scoped_ptr<BrowserChildProcessHostImpl> process_;
+ // Used in single-process mode instead of process_.
+ scoped_ptr<UtilityMainThread> in_process_thread_;
+
DISALLOW_COPY_AND_ASSIGN(UtilityProcessHostImpl);
};
« no previous file with comments | « content/browser/renderer_host/DEPS ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698