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

Unified Diff: content/public/test/test_service.h

Issue 2420253002: Rename shell namespace to service_manager (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/public/test/mock_render_thread.cc ('k') | content/public/test/test_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « content/public/test/mock_render_thread.cc ('k') | content/public/test/test_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698