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

Unified Diff: content/common/child_process.h

Issue 6966030: Allow multiple ChildProcess objects in one process for the --single-process case, when we have bo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 7 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 | « no previous file | content/common/child_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_process.h
===================================================================
--- content/common/child_process.h (revision 86367)
+++ content/common/child_process.h (working copy)
@@ -53,7 +53,7 @@
void ReleaseProcess();
// Getter for the one ChildProcess object for this process.
- static ChildProcess* current() { return child_process_; }
+ static ChildProcess* current();
static void WaitForDebugger(const std::string& label);
private:
@@ -70,9 +70,6 @@
// io_thread_.
scoped_ptr<ChildThread> main_thread_;
- // The singleton instance for this process.
- static ChildProcess* child_process_;
-
DISALLOW_COPY_AND_ASSIGN(ChildProcess);
};
« no previous file with comments | « no previous file | content/common/child_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698