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

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

Issue 2182643003: Remove shell::Connection* parameter to InterfaceFactory<T>::Create() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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/task_viewer.h » ('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"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(shell::Connection* connection, 88 void Session::Create(const shell::Identity& remote_identity,
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:ash", 95 "mojo:ash",
96 base::Bind(&Session::StartWindowManager, 96 base::Bind(&Session::StartWindowManager,
97 base::Unretained(this))); 97 base::Unretained(this)));
98 } 98 }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 if (connection) { 139 if (connection) {
140 connection->SetConnectionLostClosure( 140 connection->SetConnectionLostClosure(
141 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); 141 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback));
142 connection->AddInterface<mojom::Session>(this); 142 connection->AddInterface<mojom::Session>(this);
143 connections_[url] = std::move(connection); 143 connections_[url] = std::move(connection);
144 } 144 }
145 } 145 }
146 146
147 } // namespace session 147 } // namespace session
148 } // namespace main 148 } // namespace main
OLDNEW
« no previous file with comments | « mash/session/session.h ('k') | mash/task_viewer/task_viewer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698