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

Side by Side Diff: mash/session/session.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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
« no previous file with comments | « mash/session/session.h ('k') | mash/task_viewer/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "mash/session/session.h" 5 #include "mash/session/session.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "mash/login/public/interfaces/login.mojom.h" 10 #include "mash/login/public/interfaces/login.mojom.h"
11 #include "services/shell/public/cpp/connection.h" 11 #include "services/shell/public/cpp/connection.h"
12 #include "services/shell/public/cpp/connector.h" 12 #include "services/shell/public/cpp/connector.h"
13 13
14 namespace { 14 namespace {
15 15
16 void LogAndCallServiceRestartCallback(const std::string& url, 16 void LogAndCallServiceRestartCallback(const std::string& url,
17 const base::Closure& callback) { 17 const base::Closure& callback) {
18 LOG(ERROR) << "Restarting service: " << url; 18 LOG(ERROR) << "Restarting service: " << url;
19 callback.Run(); 19 callback.Run();
20 } 20 }
21 21
22 } // namespace 22 } // namespace
23 23
24 namespace mash { 24 namespace mash {
25 namespace session { 25 namespace session {
26 26
27 Session::Session() : connector_(nullptr), screen_locked_(false) {} 27 Session::Session() : connector_(nullptr), screen_locked_(false) {}
28 Session::~Session() {} 28 Session::~Session() {}
29 29
30 void Session::Initialize(mojo::Connector* connector, 30 void Session::Initialize(shell::Connector* connector,
31 const mojo::Identity& identity, 31 const shell::Identity& identity,
32 uint32_t id) { 32 uint32_t id) {
33 connector_ = connector; 33 connector_ = connector;
34 StartBrowserDriver(); 34 StartBrowserDriver();
35 StartWindowManager(); 35 StartWindowManager();
36 StartSystemUI(); 36 StartSystemUI();
37 StartQuickLaunch(); 37 StartQuickLaunch();
38 } 38 }
39 39
40 bool Session::AcceptConnection(mojo::Connection* connection) { 40 bool Session::AcceptConnection(shell::Connection* connection) {
41 connection->AddInterface<mojom::Session>(this); 41 connection->AddInterface<mojom::Session>(this);
42 return true; 42 return true;
43 } 43 }
44 44
45 void Session::Logout() { 45 void Session::Logout() {
46 // TODO(beng): Notify connected listeners that login is happening, potentially 46 // TODO(beng): Notify connected listeners that login is happening, potentially
47 // give them the option to stop it. 47 // give them the option to stop it.
48 mash::login::mojom::LoginPtr login; 48 mash::login::mojom::LoginPtr login;
49 connector_->ConnectToInterface("mojo:login", &login); 49 connector_->ConnectToInterface("mojo:login", &login);
50 login->ShowLoginUI(); 50 login->ShowLoginUI();
(...skipping 27 matching lines...) Expand all
78 if (!screen_locked_) 78 if (!screen_locked_)
79 return; 79 return;
80 screen_locked_ = false; 80 screen_locked_ = false;
81 screenlock_listeners_.ForAllPtrs( 81 screenlock_listeners_.ForAllPtrs(
82 [](mojom::ScreenlockStateListener* listener) { 82 [](mojom::ScreenlockStateListener* listener) {
83 listener->ScreenlockStateChanged(false); 83 listener->ScreenlockStateChanged(false);
84 }); 84 });
85 StopScreenlock(); 85 StopScreenlock();
86 } 86 }
87 87
88 void Session::Create(mojo::Connection* connection, 88 void Session::Create(shell::Connection* connection,
89 mojom::SessionRequest request) { 89 mojom::SessionRequest request) {
90 bindings_.AddBinding(this, std::move(request)); 90 bindings_.AddBinding(this, std::move(request));
91 } 91 }
92 92
93 void Session::StartWindowManager() { 93 void Session::StartWindowManager() {
94 StartRestartableService( 94 StartRestartableService(
95 "mojo:desktop_wm", 95 "mojo:desktop_wm",
96 base::Bind(&Session::StartWindowManager, 96 base::Bind(&Session::StartWindowManager,
97 base::Unretained(this))); 97 base::Unretained(this)));
98 } 98 }
(...skipping 29 matching lines...) Expand all
128 auto connection = connections_.find("mojo:screenlock"); 128 auto connection = connections_.find("mojo:screenlock");
129 DCHECK(connections_.end() != connection); 129 DCHECK(connections_.end() != connection);
130 connections_.erase(connection); 130 connections_.erase(connection);
131 } 131 }
132 132
133 void Session::StartRestartableService( 133 void Session::StartRestartableService(
134 const std::string& url, 134 const std::string& url,
135 const base::Closure& restart_callback) { 135 const base::Closure& restart_callback) {
136 // TODO(beng): This would be the place to insert logic that counted restarts 136 // TODO(beng): This would be the place to insert logic that counted restarts
137 // to avoid infinite crash-restart loops. 137 // to avoid infinite crash-restart loops.
138 std::unique_ptr<mojo::Connection> connection = connector_->Connect(url); 138 std::unique_ptr<shell::Connection> connection = connector_->Connect(url);
139 // Note: |connection| may be null if we've lost our connection to the shell. 139 // Note: |connection| may be null if we've lost our connection to the shell.
140 if (connection) { 140 if (connection) {
141 connection->SetConnectionLostClosure( 141 connection->SetConnectionLostClosure(
142 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); 142 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback));
143 connection->AddInterface<mojom::Session>(this); 143 connection->AddInterface<mojom::Session>(this);
144 connections_[url] = std::move(connection); 144 connections_[url] = std::move(connection);
145 } 145 }
146 } 146 }
147 147
148 } // namespace session 148 } // namespace session
149 } // namespace main 149 } // namespace main
OLDNEW
« no previous file with comments | « mash/session/session.h ('k') | mash/task_viewer/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698