| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_HOST_IMPL_H_ | 5 #ifndef COMPONENTS_ARC_ARC_BRIDGE_HOST_IMPL_H_ |
| 6 #define COMPONENTS_ARC_ARC_BRIDGE_HOST_IMPL_H_ | 6 #define COMPONENTS_ARC_ARC_BRIDGE_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 void OnBootPhaseMonitorInstanceReady( | 46 void OnBootPhaseMonitorInstanceReady( |
| 47 mojom::BootPhaseMonitorInstancePtr boot_phase_monitor_ptr) override; | 47 mojom::BootPhaseMonitorInstancePtr boot_phase_monitor_ptr) override; |
| 48 void OnClipboardInstanceReady( | 48 void OnClipboardInstanceReady( |
| 49 mojom::ClipboardInstancePtr clipboard_ptr) override; | 49 mojom::ClipboardInstancePtr clipboard_ptr) override; |
| 50 void OnCrashCollectorInstanceReady( | 50 void OnCrashCollectorInstanceReady( |
| 51 mojom::CrashCollectorInstancePtr crash_collector_ptr) override; | 51 mojom::CrashCollectorInstancePtr crash_collector_ptr) override; |
| 52 void OnEnterpriseReportingInstanceReady( | 52 void OnEnterpriseReportingInstanceReady( |
| 53 mojom::EnterpriseReportingInstancePtr enterprise_reporting_ptr) override; | 53 mojom::EnterpriseReportingInstancePtr enterprise_reporting_ptr) override; |
| 54 void OnFileSystemInstanceReady( | 54 void OnFileSystemInstanceReady( |
| 55 mojom::FileSystemInstancePtr file_system_ptr) override; | 55 mojom::FileSystemInstancePtr file_system_ptr) override; |
| 56 void OnFocusHighlightInstanceReady( |
| 57 mojom::FocusHighlightInstancePtr focus_highlight_ptr) override; |
| 56 void OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) override; | 58 void OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) override; |
| 57 void OnIntentHelperInstanceReady( | 59 void OnIntentHelperInstanceReady( |
| 58 mojom::IntentHelperInstancePtr intent_helper_ptr) override; | 60 mojom::IntentHelperInstancePtr intent_helper_ptr) override; |
| 59 void OnKioskInstanceReady(mojom::KioskInstancePtr kiosk_ptr) override; | 61 void OnKioskInstanceReady(mojom::KioskInstancePtr kiosk_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( |
| 65 mojom::ObbMounterInstancePtr obb_mounter_ptr) override; | 67 mojom::ObbMounterInstancePtr obb_mounter_ptr) override; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // Put as a last member to ensure that any callback tied to the elements | 100 // Put as a last member to ensure that any callback tied to the elements |
| 99 // is not invoked. | 101 // is not invoked. |
| 100 std::vector<std::unique_ptr<MojoChannel>> mojo_channels_; | 102 std::vector<std::unique_ptr<MojoChannel>> mojo_channels_; |
| 101 | 103 |
| 102 DISALLOW_COPY_AND_ASSIGN(ArcBridgeHostImpl); | 104 DISALLOW_COPY_AND_ASSIGN(ArcBridgeHostImpl); |
| 103 }; | 105 }; |
| 104 | 106 |
| 105 } // namespace arc | 107 } // namespace arc |
| 106 | 108 |
| 107 #endif // COMPONENTS_ARC_ARC_BRIDGE_HOST_IMPL_H_ | 109 #endif // COMPONENTS_ARC_ARC_BRIDGE_HOST_IMPL_H_ |
| OLD | NEW |