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). |