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

Side by Side Diff: components/arc/arc_bridge_service_impl.cc

Issue 2168533002: Remove window_manager.mojom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « components/arc/arc_bridge_service_impl.h ('k') | components/arc/arc_service_manager.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 "components/arc/arc_bridge_service_impl.h" 5 #include "components/arc/arc_bridge_service_impl.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 intent_helper_.CloseChannel(); 186 intent_helper_.CloseChannel();
187 metrics_.CloseChannel(); 187 metrics_.CloseChannel();
188 net_.CloseChannel(); 188 net_.CloseChannel();
189 notifications_.CloseChannel(); 189 notifications_.CloseChannel();
190 obb_mounter_.CloseChannel(); 190 obb_mounter_.CloseChannel();
191 policy_.CloseChannel(); 191 policy_.CloseChannel();
192 power_.CloseChannel(); 192 power_.CloseChannel();
193 process_.CloseChannel(); 193 process_.CloseChannel();
194 storage_manager_.CloseChannel(); 194 storage_manager_.CloseChannel();
195 video_.CloseChannel(); 195 video_.CloseChannel();
196 window_manager_.CloseChannel();
197 } 196 }
198 197
199 void ArcBridgeServiceImpl::OnAppInstanceReady(mojom::AppInstancePtr app_ptr) { 198 void ArcBridgeServiceImpl::OnAppInstanceReady(mojom::AppInstancePtr app_ptr) {
200 DCHECK(CalledOnValidThread()); 199 DCHECK(CalledOnValidThread());
201 app_.OnInstanceReady(std::move(app_ptr)); 200 app_.OnInstanceReady(std::move(app_ptr));
202 } 201 }
203 202
204 void ArcBridgeServiceImpl::OnAudioInstanceReady( 203 void ArcBridgeServiceImpl::OnAudioInstanceReady(
205 mojom::AudioInstancePtr audio_ptr) { 204 mojom::AudioInstancePtr audio_ptr) {
206 DCHECK(CalledOnValidThread()); 205 DCHECK(CalledOnValidThread());
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 DCHECK(CalledOnValidThread()); 293 DCHECK(CalledOnValidThread());
295 storage_manager_.OnInstanceReady(std::move(storage_manager_ptr)); 294 storage_manager_.OnInstanceReady(std::move(storage_manager_ptr));
296 } 295 }
297 296
298 void ArcBridgeServiceImpl::OnVideoInstanceReady( 297 void ArcBridgeServiceImpl::OnVideoInstanceReady(
299 mojom::VideoInstancePtr video_ptr) { 298 mojom::VideoInstancePtr video_ptr) {
300 DCHECK(CalledOnValidThread()); 299 DCHECK(CalledOnValidThread());
301 video_.OnInstanceReady(std::move(video_ptr)); 300 video_.OnInstanceReady(std::move(video_ptr));
302 } 301 }
303 302
304 void ArcBridgeServiceImpl::OnWindowManagerInstanceReady(
305 mojom::WindowManagerInstancePtr window_manager_ptr) {
306 DCHECK(CalledOnValidThread());
307 window_manager_.OnInstanceReady(std::move(window_manager_ptr));
308 }
309
310 } // namespace arc 303 } // namespace arc
OLDNEW
« no previous file with comments | « components/arc/arc_bridge_service_impl.h ('k') | components/arc/arc_service_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698