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

Side by Side Diff: services/ui/public/cpp/tests/window_server_test_base.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 | « services/ui/public/cpp/tests/window_server_test_base.h ('k') | services/ui/service.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 "services/ui/public/cpp/tests/window_server_test_base.h" 5 #include "services/ui/public/cpp/tests/window_server_test_base.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 window_manager_delegate_->OnWmCancelMoveLoop(window); 147 window_manager_delegate_->OnWmCancelMoveLoop(window);
148 } 148 }
149 149
150 mojom::EventResult WindowServerTestBase::OnAccelerator(uint32_t accelerator_id, 150 mojom::EventResult WindowServerTestBase::OnAccelerator(uint32_t accelerator_id,
151 const ui::Event& event) { 151 const ui::Event& event) {
152 return window_manager_delegate_ 152 return window_manager_delegate_
153 ? window_manager_delegate_->OnAccelerator(accelerator_id, event) 153 ? window_manager_delegate_->OnAccelerator(accelerator_id, event)
154 : mojom::EventResult::UNHANDLED; 154 : mojom::EventResult::UNHANDLED;
155 } 155 }
156 156
157 void WindowServerTestBase::Create(shell::Connection* connection, 157 void WindowServerTestBase::Create(const shell::Identity& remote_identity,
158 mojom::WindowTreeClientRequest request) { 158 mojom::WindowTreeClientRequest request) {
159 new WindowTreeClient(this, nullptr, std::move(request)); 159 new WindowTreeClient(this, nullptr, std::move(request));
160 } 160 }
161 161
162 } // namespace ui 162 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/public/cpp/tests/window_server_test_base.h ('k') | services/ui/service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698