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

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

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.h ('k') | components/arc/arc_bridge_service_impl.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 #ifndef COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_ 5 #ifndef COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_
6 #define COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_ 6 #define COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 // ArcHost: 45 // ArcHost:
46 void OnAppInstanceReady(mojom::AppInstancePtr app_ptr) override; 46 void OnAppInstanceReady(mojom::AppInstancePtr app_ptr) override;
47 void OnAudioInstanceReady(mojom::AudioInstancePtr audio_ptr) override; 47 void OnAudioInstanceReady(mojom::AudioInstancePtr audio_ptr) override;
48 void OnAuthInstanceReady(mojom::AuthInstancePtr auth_ptr) override; 48 void OnAuthInstanceReady(mojom::AuthInstancePtr auth_ptr) override;
49 void OnBluetoothInstanceReady( 49 void OnBluetoothInstanceReady(
50 mojom::BluetoothInstancePtr bluetooth_ptr) override; 50 mojom::BluetoothInstancePtr bluetooth_ptr) override;
51 void OnClipboardInstanceReady( 51 void OnClipboardInstanceReady(
52 mojom::ClipboardInstancePtr clipboard_ptr) override; 52 mojom::ClipboardInstancePtr clipboard_ptr) override;
53 void OnCrashCollectorInstanceReady( 53 void OnCrashCollectorInstanceReady(
54 mojom::CrashCollectorInstancePtr crash_collector_ptr) override; 54 mojom::CrashCollectorInstancePtr crash_collector_ptr) override;
55 void OnEnterpriseReportingInstanceReady(
56 mojom::EnterpriseReportingInstancePtr enterprise_reporting_ptr) override;
55 void OnFileSystemInstanceReady( 57 void OnFileSystemInstanceReady(
56 mojom::FileSystemInstancePtr file_system_ptr) override; 58 mojom::FileSystemInstancePtr file_system_ptr) override;
57 void OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) override; 59 void OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) override;
58 void OnIntentHelperInstanceReady( 60 void OnIntentHelperInstanceReady(
59 mojom::IntentHelperInstancePtr intent_helper_ptr) override; 61 mojom::IntentHelperInstancePtr intent_helper_ptr) override;
60 void OnMetricsInstanceReady(mojom::MetricsInstancePtr metrics_ptr) override; 62 void OnMetricsInstanceReady(mojom::MetricsInstancePtr metrics_ptr) override;
61 void OnNetInstanceReady(mojom::NetInstancePtr net_ptr) override; 63 void OnNetInstanceReady(mojom::NetInstancePtr net_ptr) override;
62 void OnNotificationsInstanceReady( 64 void OnNotificationsInstanceReady(
63 mojom::NotificationsInstancePtr notifications_ptr) override; 65 mojom::NotificationsInstancePtr notifications_ptr) override;
64 void OnObbMounterInstanceReady( 66 void OnObbMounterInstanceReady(
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 111
110 // WeakPtrFactory to use callbacks. 112 // WeakPtrFactory to use callbacks.
111 base::WeakPtrFactory<ArcBridgeServiceImpl> weak_factory_; 113 base::WeakPtrFactory<ArcBridgeServiceImpl> weak_factory_;
112 114
113 DISALLOW_COPY_AND_ASSIGN(ArcBridgeServiceImpl); 115 DISALLOW_COPY_AND_ASSIGN(ArcBridgeServiceImpl);
114 }; 116 };
115 117
116 } // namespace arc 118 } // namespace arc
117 119
118 #endif // COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_ 120 #endif // COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_
OLDNEW
« no previous file with comments | « components/arc/arc_bridge_service.h ('k') | components/arc/arc_bridge_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698