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

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

Issue 2165643004: arc: add enterprise_reporting.mojom interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed SessionManagerClient stub RemoveArcData method. 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 | « 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 DCHECK(CalledOnValidThread()); 223 DCHECK(CalledOnValidThread());
224 clipboard_.OnInstanceReady(std::move(clipboard_ptr)); 224 clipboard_.OnInstanceReady(std::move(clipboard_ptr));
225 } 225 }
226 226
227 void ArcBridgeServiceImpl::OnCrashCollectorInstanceReady( 227 void ArcBridgeServiceImpl::OnCrashCollectorInstanceReady(
228 mojom::CrashCollectorInstancePtr crash_collector_ptr) { 228 mojom::CrashCollectorInstancePtr crash_collector_ptr) {
229 DCHECK(CalledOnValidThread()); 229 DCHECK(CalledOnValidThread());
230 crash_collector_.OnInstanceReady(std::move(crash_collector_ptr)); 230 crash_collector_.OnInstanceReady(std::move(crash_collector_ptr));
231 } 231 }
232 232
233 void ArcBridgeServiceImpl::OnEnterpriseReportingInstanceReady(
234 mojom::EnterpriseReportingInstancePtr enterprise_reporting_ptr) {
235 DCHECK(CalledOnValidThread());
236 enterprise_reporting_.OnInstanceReady(std::move(enterprise_reporting_ptr));
237 }
238
233 void ArcBridgeServiceImpl::OnFileSystemInstanceReady( 239 void ArcBridgeServiceImpl::OnFileSystemInstanceReady(
234 mojom::FileSystemInstancePtr file_system_ptr) { 240 mojom::FileSystemInstancePtr file_system_ptr) {
235 DCHECK(CalledOnValidThread()); 241 DCHECK(CalledOnValidThread());
236 file_system_.OnInstanceReady(std::move(file_system_ptr)); 242 file_system_.OnInstanceReady(std::move(file_system_ptr));
237 } 243 }
238 244
239 void ArcBridgeServiceImpl::OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) { 245 void ArcBridgeServiceImpl::OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) {
240 DCHECK(CalledOnValidThread()); 246 DCHECK(CalledOnValidThread());
241 ime_.OnInstanceReady(std::move(ime_ptr)); 247 ime_.OnInstanceReady(std::move(ime_ptr));
242 } 248 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 storage_manager_.OnInstanceReady(std::move(storage_manager_ptr)); 300 storage_manager_.OnInstanceReady(std::move(storage_manager_ptr));
295 } 301 }
296 302
297 void ArcBridgeServiceImpl::OnVideoInstanceReady( 303 void ArcBridgeServiceImpl::OnVideoInstanceReady(
298 mojom::VideoInstancePtr video_ptr) { 304 mojom::VideoInstancePtr video_ptr) {
299 DCHECK(CalledOnValidThread()); 305 DCHECK(CalledOnValidThread());
300 video_.OnInstanceReady(std::move(video_ptr)); 306 video_.OnInstanceReady(std::move(video_ptr));
301 } 307 }
302 308
303 } // namespace arc 309 } // 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