diff options
Diffstat (limited to 'mojo/services/test_service/test_service_impl.h')
-rw-r--r-- | mojo/services/test_service/test_service_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mojo/services/test_service/test_service_impl.h b/mojo/services/test_service/test_service_impl.h index f96da3c..60ba795 100644 --- a/mojo/services/test_service/test_service_impl.h +++ b/mojo/services/test_service/test_service_impl.h @@ -13,7 +13,7 @@ #include "mojo/services/test_service/test_service.mojom.h" namespace mojo { -class Shell; +class Connector; namespace test { class TrackedService; @@ -21,7 +21,7 @@ class TestServiceApplication; class TestServiceImpl : public TestService { public: - TestServiceImpl(Shell* shell, + TestServiceImpl(Connector* connector, TestServiceApplication* application, InterfaceRequest<TestService> request); ~TestServiceImpl() override; @@ -35,7 +35,7 @@ class TestServiceImpl : public TestService { private: TestServiceApplication* const application_; - Shell* const shell_; + Connector* const connector_; TestTimeServicePtr time_service_; scoped_ptr<TrackedService> tracking_; StrongBinding<TestService> binding_; |