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

Side by Side Diff: services/service_manager/background/tests/test_service.cc

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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "mojo/public/cpp/bindings/binding_set.h" 5 #include "mojo/public/cpp/bindings/binding_set.h"
6 #include "services/service_manager/background/tests/test.mojom.h" 6 #include "services/service_manager/background/tests/test.mojom.h"
7 #include "services/service_manager/public/c/main.h" 7 #include "services/service_manager/public/c/main.h"
8 #include "services/service_manager/public/cpp/interface_registry.h" 8 #include "services/service_manager/public/cpp/interface_registry.h"
9 #include "services/service_manager/public/cpp/service.h" 9 #include "services/service_manager/public/cpp/service.h"
10 #include "services/service_manager/public/cpp/service_runner.h" 10 #include "services/service_manager/public/cpp/service_runner.h"
11 11
12 namespace shell { 12 namespace service_manager {
13 13
14 class TestClient : public Service, 14 class TestClient : public Service,
15 public InterfaceFactory<mojom::TestService>, 15 public InterfaceFactory<mojom::TestService>,
16 public mojom::TestService { 16 public mojom::TestService {
17 public: 17 public:
18 TestClient() {} 18 TestClient() {}
19 ~TestClient() override {} 19 ~TestClient() override {}
20 20
21 private: 21 private:
22 // Service: 22 // Service:
(...skipping 15 matching lines...) Expand all
38 // mojom::TestService 38 // mojom::TestService
39 void Test(const TestCallback& callback) override { 39 void Test(const TestCallback& callback) override {
40 callback.Run(); 40 callback.Run();
41 } 41 }
42 42
43 mojo::BindingSet<mojom::TestService> bindings_; 43 mojo::BindingSet<mojom::TestService> bindings_;
44 44
45 DISALLOW_COPY_AND_ASSIGN(TestClient); 45 DISALLOW_COPY_AND_ASSIGN(TestClient);
46 }; 46 };
47 47
48 } // namespace shell 48 } // namespace service_manager
49 49
50 MojoResult ServiceMain(MojoHandle service_request_handle) { 50 MojoResult ServiceMain(MojoHandle service_request_handle) {
51 shell::ServiceRunner runner(new shell::TestClient); 51 service_manager::ServiceRunner runner(new service_manager::TestClient);
52 return runner.Run(service_request_handle); 52 return runner.Run(service_request_handle);
53 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698