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

Unified Diff: services/ui/test_wm/test_wm.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/ui/service.cc ('k') | services/ui/ws/display.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/test_wm/test_wm.cc
diff --git a/services/ui/test_wm/test_wm.cc b/services/ui/test_wm/test_wm.cc
index 6a9252ec388a5d2cb7ba1d133c8340af1f87c821..0a839407f5a227657425bbe6046dfbb5994adb50 100644
--- a/services/ui/test_wm/test_wm.cc
+++ b/services/ui/test_wm/test_wm.cc
@@ -19,7 +19,7 @@
namespace ui {
namespace test {
-class TestWM : public shell::Service,
+class TestWM : public service_manager::Service,
public ui::WindowTreeClientDelegate,
public ui::WindowManagerDelegate {
public:
@@ -27,8 +27,8 @@ class TestWM : public shell::Service,
~TestWM() override {}
private:
- // shell::Service:
- void OnStart(const shell::Identity& identity) override {
+ // service_manager::Service:
+ void OnStart(const service_manager::Identity& identity) override {
window_tree_client_.reset(new ui::WindowTreeClient(this, this));
window_tree_client_->ConnectAsWindowManager(connector());
}
@@ -109,6 +109,6 @@ class TestWM : public shell::Service,
} // namespace ui
MojoResult ServiceMain(MojoHandle service_request_handle) {
- shell::ServiceRunner runner(new ui::test::TestWM);
+ service_manager::ServiceRunner runner(new ui::test::TestWM);
return runner.Run(service_request_handle);
}
« no previous file with comments | « services/ui/service.cc ('k') | services/ui/ws/display.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698