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

Unified Diff: content/common/in_process_child_thread_params.h

Issue 2226403002: Remove Channel token from InProcessChildThreadParams (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@moar-channels
Patch Set: rebase Created 4 years, 4 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/child/child_thread_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 ebbf8f6f2fca7862a80b67b50f87649f5db4ba2f..4bc7deafe3c46f911871ca2aac5177c47b2b75c3 100644
--- a/content/common/in_process_child_thread_params.h
+++ b/content/common/in_process_child_thread_params.h
@@ -21,7 +21,6 @@ class CONTENT_EXPORT InProcessChildThreadParams {
InProcessChildThreadParams(
const std::string& channel_name,
scoped_refptr<base::SequencedTaskRunner> io_runner,
- const std::string& ipc_token = std::string(),
const std::string& application_token = std::string());
InProcessChildThreadParams(const InProcessChildThreadParams& other);
~InProcessChildThreadParams();
@@ -30,7 +29,6 @@ class CONTENT_EXPORT InProcessChildThreadParams {
scoped_refptr<base::SequencedTaskRunner> io_runner() const {
return io_runner_;
}
- const std::string& ipc_token() const { return ipc_token_; }
const std::string& application_token() const {
return application_token_;
}
@@ -38,7 +36,6 @@ class CONTENT_EXPORT InProcessChildThreadParams {
private:
std::string channel_name_;
scoped_refptr<base::SequencedTaskRunner> io_runner_;
- std::string ipc_token_;
std::string application_token_;
};
« no previous file with comments | « content/child/child_thread_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