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

Unified Diff: mojo/runner/child_process_host.h

Issue 1344933002: Clean up some unused methods from ApplicationManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 3 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 | « mojo/runner/child_process.cc ('k') | mojo/runner/child_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/runner/child_process_host.h
diff --git a/mojo/runner/child_process_host.h b/mojo/runner/child_process_host.h
index 1875ede4bd751a8cb5fb32f093dd343258e91310..8ab3147992b82e3faab43bde95d7ebf0b0e68b5c 100644
--- a/mojo/runner/child_process_host.h
+++ b/mojo/runner/child_process_host.h
@@ -33,12 +33,10 @@ class ChildProcessHost {
public:
// |name| is just for debugging ease. We will spawn off a process so that it
// can be sandboxed if |start_sandboxed| is true. |app_path| is a path to the
- // mojo application we wish to start. |clean_app_path| cleans up transient
- // applications after execution.
+ // mojo application we wish to start.
ChildProcessHost(Context* context,
bool start_sandboxed,
- const base::FilePath& app_path,
- bool clean_app_path);
+ const base::FilePath& app_path);
virtual ~ChildProcessHost();
// |Start()|s the child process; calls |DidStart()| (on the thread on which
@@ -73,7 +71,6 @@ class ChildProcessHost {
Context* const context_;
bool start_sandboxed_;
const base::FilePath app_path_;
- bool clean_app_path_;
base::Process child_process_;
embedder::PlatformChannelPair platform_channel_pair_;
ChildControllerPtr controller_;
« no previous file with comments | « mojo/runner/child_process.cc ('k') | mojo/runner/child_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698