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

Side by Side Diff: services/service_manager/tests/shutdown/shutdown_client_app.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 "base/macros.h" 5 #include "base/macros.h"
6 #include "base/run_loop.h" 6 #include "base/run_loop.h"
7 #include "mojo/public/cpp/bindings/binding_set.h" 7 #include "mojo/public/cpp/bindings/binding_set.h"
8 #include "services/service_manager/public/c/main.h" 8 #include "services/service_manager/public/c/main.h"
9 #include "services/service_manager/public/cpp/connector.h" 9 #include "services/service_manager/public/cpp/connector.h"
10 #include "services/service_manager/public/cpp/interface_factory.h" 10 #include "services/service_manager/public/cpp/interface_factory.h"
11 #include "services/service_manager/public/cpp/interface_registry.h" 11 #include "services/service_manager/public/cpp/interface_registry.h"
12 #include "services/service_manager/public/cpp/service.h" 12 #include "services/service_manager/public/cpp/service.h"
13 #include "services/service_manager/public/cpp/service_runner.h" 13 #include "services/service_manager/public/cpp/service_runner.h"
14 #include "services/service_manager/tests/shutdown/shutdown_unittest.mojom.h" 14 #include "services/service_manager/tests/shutdown/shutdown_unittest.mojom.h"
15 15
16 namespace shell { 16 namespace service_manager {
17 17
18 class ShutdownClientApp 18 class ShutdownClientApp
19 : public Service, 19 : public Service,
20 public InterfaceFactory<mojom::ShutdownTestClientController>, 20 public InterfaceFactory<mojom::ShutdownTestClientController>,
21 public mojom::ShutdownTestClientController, 21 public mojom::ShutdownTestClientController,
22 public mojom::ShutdownTestClient { 22 public mojom::ShutdownTestClient {
23 public: 23 public:
24 ShutdownClientApp() {} 24 ShutdownClientApp() {}
25 ~ShutdownClientApp() override {} 25 ~ShutdownClientApp() override {}
26 26
27 private: 27 private:
28 // shell::Service: 28 // service_manager::Service:
29 bool OnConnect(const Identity& remote_identity, 29 bool OnConnect(const Identity& remote_identity,
30 InterfaceRegistry* registry) override { 30 InterfaceRegistry* registry) override {
31 registry->AddInterface<mojom::ShutdownTestClientController>(this); 31 registry->AddInterface<mojom::ShutdownTestClientController>(this);
32 return true; 32 return true;
33 } 33 }
34 34
35 // InterfaceFactory<mojom::ShutdownTestClientController>: 35 // InterfaceFactory<mojom::ShutdownTestClientController>:
36 void Create(const Identity& remote_identity, 36 void Create(const Identity& remote_identity,
37 mojom::ShutdownTestClientControllerRequest request) override { 37 mojom::ShutdownTestClientControllerRequest request) override {
38 bindings_.AddBinding(this, std::move(request)); 38 bindings_.AddBinding(this, std::move(request));
(...skipping 18 matching lines...) Expand all
57 run_loop.Run(); 57 run_loop.Run();
58 58
59 callback.Run(); 59 callback.Run();
60 } 60 }
61 61
62 mojo::BindingSet<mojom::ShutdownTestClientController> bindings_; 62 mojo::BindingSet<mojom::ShutdownTestClientController> bindings_;
63 63
64 DISALLOW_COPY_AND_ASSIGN(ShutdownClientApp); 64 DISALLOW_COPY_AND_ASSIGN(ShutdownClientApp);
65 }; 65 };
66 66
67 } // namespace shell 67 } // namespace service_manager
68
69 68
70 MojoResult ServiceMain(MojoHandle service_request_handle) { 69 MojoResult ServiceMain(MojoHandle service_request_handle) {
71 shell::ServiceRunner runner(new shell::ShutdownClientApp); 70 service_manager::ServiceRunner runner(new service_manager::ShutdownClientApp);
72 return runner.Run(service_request_handle); 71 return runner.Run(service_request_handle);
73 } 72 }
OLDNEW
« no previous file with comments | « services/service_manager/tests/shell/target.cc ('k') | services/service_manager/tests/shutdown/shutdown_client_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698