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

Unified Diff: content/common/in_process_child_thread_params.h

Issue 2389193004: Always use ChannelMojo for content child processes. (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/child_process_host_impl.cc ('k') | content/common/in_process_child_thread_params.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/in_process_child_thread_params.h
diff --git a/content/common/in_process_child_thread_params.h b/content/common/in_process_child_thread_params.h
index 4bc7deafe3c46f911871ca2aac5177c47b2b75c3..e4b673c8306dbfdd1e42794a6d86e0ef44184322 100644
--- a/content/common/in_process_child_thread_params.h
+++ b/content/common/in_process_child_thread_params.h
@@ -18,14 +18,11 @@ namespace content {
// ChnanelMojo, an IPC channel name to open.
class CONTENT_EXPORT InProcessChildThreadParams {
public:
- InProcessChildThreadParams(
- const std::string& channel_name,
- scoped_refptr<base::SequencedTaskRunner> io_runner,
- const std::string& application_token = std::string());
+ InProcessChildThreadParams(scoped_refptr<base::SequencedTaskRunner> io_runner,
+ const std::string& application_token);
InProcessChildThreadParams(const InProcessChildThreadParams& other);
~InProcessChildThreadParams();
- const std::string& channel_name() const { return channel_name_; }
scoped_refptr<base::SequencedTaskRunner> io_runner() const {
return io_runner_;
}
@@ -34,7 +31,6 @@ class CONTENT_EXPORT InProcessChildThreadParams {
}
private:
- std::string channel_name_;
scoped_refptr<base::SequencedTaskRunner> io_runner_;
std::string application_token_;
};
« no previous file with comments | « content/common/child_process_host_impl.cc ('k') | content/common/in_process_child_thread_params.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698