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

Unified Diff: services/shell/public/cpp/application_runner.h

Issue 2118083002: ShellClient -> Service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mus2
Patch Set: . Created 4 years, 5 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 | « services/shell/public/cpp/BUILD.gn ('k') | services/shell/public/cpp/connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/public/cpp/application_runner.h
diff --git a/services/shell/public/cpp/application_runner.h b/services/shell/public/cpp/application_runner.h
index 36d79e36fa4b195e25a793593a5f05d96bdabf16..bc26b53e6c7d55b93c5aa6e96a5e47e82595551b 100644
--- a/services/shell/public/cpp/application_runner.h
+++ b/services/shell/public/cpp/application_runner.h
@@ -12,7 +12,7 @@
namespace shell {
-class ShellClient;
+class Service;
class ShellConnection;
// A utility for running a chromium based mojo Application. The typical use
@@ -29,7 +29,7 @@ class ShellConnection;
class ApplicationRunner {
public:
// Takes ownership of |client|.
- explicit ApplicationRunner(ShellClient* client);
+ explicit ApplicationRunner(Service* client);
~ApplicationRunner();
static void InitBaseCommandLine();
@@ -60,7 +60,7 @@ class ApplicationRunner {
private:
std::unique_ptr<ShellConnection> connection_;
- std::unique_ptr<ShellClient> client_;
+ std::unique_ptr<Service> client_;
// MessageLoop type. TYPE_CUSTOM is default (MessagePumpMojo will be used as
// the underlying message pump).
« no previous file with comments | « services/shell/public/cpp/BUILD.gn ('k') | services/shell/public/cpp/connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698