| Index: content/public/test/test_service.h
|
| diff --git a/content/public/test/test_service.h b/content/public/test/test_service.h
|
| index 5c4cbea64961268d136a3733a18d45807f4c4a2e..ee276e73c1f9eeb00fd9cb04464fa6cde665b2af 100644
|
| --- a/content/public/test/test_service.h
|
| +++ b/content/public/test/test_service.h
|
| @@ -19,20 +19,21 @@ extern const char kTestServiceUrl[];
|
|
|
| // Simple Service which provides a mojom::TestService impl. The service
|
| // terminates itself after its TestService fulfills a single DoSomething call.
|
| -class TestService : public shell::Service,
|
| - public shell::InterfaceFactory<mojom::TestService>,
|
| - public mojom::TestService {
|
| +class TestService
|
| + : public service_manager::Service,
|
| + public service_manager::InterfaceFactory<mojom::TestService>,
|
| + public mojom::TestService {
|
| public:
|
| TestService();
|
| ~TestService() override;
|
|
|
| private:
|
| - // shell::Service:
|
| - bool OnConnect(const shell::Identity& remote_identity,
|
| - shell::InterfaceRegistry* registry) override;
|
| + // service_manager::Service:
|
| + bool OnConnect(const service_manager::Identity& remote_identity,
|
| + service_manager::InterfaceRegistry* registry) override;
|
|
|
| - // shell::InterfaceFactory<mojom::TestService>:
|
| - void Create(const shell::Identity& remote_identity,
|
| + // service_manager::InterfaceFactory<mojom::TestService>:
|
| + void Create(const service_manager::Identity& remote_identity,
|
| mojom::TestServiceRequest request) override;
|
|
|
| // TestService:
|
|
|