| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 void OnBootPhaseMonitorInstanceReady( | 43 void OnBootPhaseMonitorInstanceReady( |
| 44 mojom::BootPhaseMonitorInstancePtr boot_phase_monitor_ptr) override; | 44 mojom::BootPhaseMonitorInstancePtr boot_phase_monitor_ptr) override; |
| 45 void OnClipboardInstanceReady( | 45 void OnClipboardInstanceReady( |
| 46 mojom::ClipboardInstancePtr clipboard_ptr) override; | 46 mojom::ClipboardInstancePtr clipboard_ptr) override; |
| 47 void OnCrashCollectorInstanceReady( | 47 void OnCrashCollectorInstanceReady( |
| 48 mojom::CrashCollectorInstancePtr crash_collector_ptr) override; | 48 mojom::CrashCollectorInstancePtr crash_collector_ptr) override; |
| 49 void OnEnterpriseReportingInstanceReady( | 49 void OnEnterpriseReportingInstanceReady( |
| 50 mojom::EnterpriseReportingInstancePtr enterprise_reporting_ptr) override; | 50 mojom::EnterpriseReportingInstancePtr enterprise_reporting_ptr) override; |
| 51 void OnFileSystemInstanceReady( | 51 void OnFileSystemInstanceReady( |
| 52 mojom::FileSystemInstancePtr file_system_ptr) override; | 52 mojom::FileSystemInstancePtr file_system_ptr) override; |
| 53 void OnFocusHighlightInstanceReady( |
| 54 mojom::FocusHighlightInstancePtr focus_highlight_ptr) override; |
| 53 void OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) override; | 55 void OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) override; |
| 54 void OnIntentHelperInstanceReady( | 56 void OnIntentHelperInstanceReady( |
| 55 mojom::IntentHelperInstancePtr intent_helper_ptr) override; | 57 mojom::IntentHelperInstancePtr intent_helper_ptr) override; |
| 56 void OnKioskInstanceReady(mojom::KioskInstancePtr kiosk_ptr) override; | 58 void OnKioskInstanceReady(mojom::KioskInstancePtr kiosk_ptr) override; |
| 57 void OnMetricsInstanceReady(mojom::MetricsInstancePtr metrics_ptr) override; | 59 void OnMetricsInstanceReady(mojom::MetricsInstancePtr metrics_ptr) override; |
| 58 void OnNetInstanceReady(mojom::NetInstancePtr net_ptr) override; | 60 void OnNetInstanceReady(mojom::NetInstancePtr net_ptr) override; |
| 59 void OnNotificationsInstanceReady( | 61 void OnNotificationsInstanceReady( |
| 60 mojom::NotificationsInstancePtr notifications_ptr) override; | 62 mojom::NotificationsInstancePtr notifications_ptr) override; |
| 61 void OnObbMounterInstanceReady( | 63 void OnObbMounterInstanceReady( |
| 62 mojom::ObbMounterInstancePtr obb_mounter_ptr) override; | 64 mojom::ObbMounterInstancePtr obb_mounter_ptr) override; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 92 // Put as a last member to ensure that any callback tied to the elements | 94 // Put as a last member to ensure that any callback tied to the elements |
| 93 // is not invoked. | 95 // is not invoked. |
| 94 std::vector<std::unique_ptr<MojoChannel>> mojo_channels_; | 96 std::vector<std::unique_ptr<MojoChannel>> mojo_channels_; |
| 95 | 97 |
| 96 DISALLOW_COPY_AND_ASSIGN(ArcBridgeHostImpl); | 98 DISALLOW_COPY_AND_ASSIGN(ArcBridgeHostImpl); |
| 97 }; | 99 }; |
| 98 | 100 |
| 99 } // namespace arc | 101 } // namespace arc |
| 100 | 102 |
| 101 #endif // COMPONENTS_ARC_ARC_BRIDGE_HOST_IMPL_H_ | 103 #endif // COMPONENTS_ARC_ARC_BRIDGE_HOST_IMPL_H_ |
| OLD | NEW |