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

Unified Diff: content/common/in_process_child_thread_params.h

Issue 2398783002: Rename a bunch of Mojo Application stuff to reference Services. (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/BUILD.gn ('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 e4b673c8306dbfdd1e42794a6d86e0ef44184322..664db42b51f8bad5ba103fcc648a1f552c520653 100644
--- a/content/common/in_process_child_thread_params.h
+++ b/content/common/in_process_child_thread_params.h
@@ -19,20 +19,20 @@ namespace content {
class CONTENT_EXPORT InProcessChildThreadParams {
public:
InProcessChildThreadParams(scoped_refptr<base::SequencedTaskRunner> io_runner,
- const std::string& application_token);
+ const std::string& service_request_token);
InProcessChildThreadParams(const InProcessChildThreadParams& other);
~InProcessChildThreadParams();
scoped_refptr<base::SequencedTaskRunner> io_runner() const {
return io_runner_;
}
- const std::string& application_token() const {
- return application_token_;
+ const std::string& service_request_token() const {
+ return service_request_token_;
}
private:
scoped_refptr<base::SequencedTaskRunner> io_runner_;
- std::string application_token_;
+ std::string service_request_token_;
};
} // namespace content
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/in_process_child_thread_params.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698