| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ | 5 #ifndef CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ |
| 6 #define CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ | 6 #define CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 class BluetoothManagerClient; | 32 class BluetoothManagerClient; |
| 33 class BluetoothNodeClient; | 33 class BluetoothNodeClient; |
| 34 class BluetoothOutOfBandClient; | 34 class BluetoothOutOfBandClient; |
| 35 class CrasAudioClient; | 35 class CrasAudioClient; |
| 36 class CrosDisksClient; | 36 class CrosDisksClient; |
| 37 class CryptohomeClient; | 37 class CryptohomeClient; |
| 38 class DebugDaemonClient; | 38 class DebugDaemonClient; |
| 39 class ExperimentalBluetoothAdapterClient; | 39 class ExperimentalBluetoothAdapterClient; |
| 40 class ExperimentalBluetoothAgentManagerClient; | 40 class ExperimentalBluetoothAgentManagerClient; |
| 41 class ExperimentalBluetoothDeviceClient; | 41 class ExperimentalBluetoothDeviceClient; |
| 42 class ExperimentalBluetoothInputClient; |
| 42 class ExperimentalBluetoothProfileManagerClient; | 43 class ExperimentalBluetoothProfileManagerClient; |
| 43 class GsmSMSClient; | 44 class GsmSMSClient; |
| 44 class IBusClient; | 45 class IBusClient; |
| 45 class IBusConfigClient; | 46 class IBusConfigClient; |
| 46 class IBusEngineFactoryService; | 47 class IBusEngineFactoryService; |
| 47 class IBusEngineService; | 48 class IBusEngineService; |
| 48 class IBusInputContextClient; | 49 class IBusInputContextClient; |
| 49 class IBusPanelService; | 50 class IBusPanelService; |
| 50 class ImageBurnerClient; | 51 class ImageBurnerClient; |
| 51 class IntrospectableClient; | 52 class IntrospectableClient; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 virtual CrasAudioClient* GetCrasAudioClient() = 0; | 135 virtual CrasAudioClient* GetCrasAudioClient() = 0; |
| 135 virtual CrosDisksClient* GetCrosDisksClient() = 0; | 136 virtual CrosDisksClient* GetCrosDisksClient() = 0; |
| 136 virtual CryptohomeClient* GetCryptohomeClient() = 0; | 137 virtual CryptohomeClient* GetCryptohomeClient() = 0; |
| 137 virtual DebugDaemonClient* GetDebugDaemonClient() = 0; | 138 virtual DebugDaemonClient* GetDebugDaemonClient() = 0; |
| 138 virtual ExperimentalBluetoothAdapterClient* | 139 virtual ExperimentalBluetoothAdapterClient* |
| 139 GetExperimentalBluetoothAdapterClient() = 0; | 140 GetExperimentalBluetoothAdapterClient() = 0; |
| 140 virtual ExperimentalBluetoothAgentManagerClient* | 141 virtual ExperimentalBluetoothAgentManagerClient* |
| 141 GetExperimentalBluetoothAgentManagerClient() = 0; | 142 GetExperimentalBluetoothAgentManagerClient() = 0; |
| 142 virtual ExperimentalBluetoothDeviceClient* | 143 virtual ExperimentalBluetoothDeviceClient* |
| 143 GetExperimentalBluetoothDeviceClient() = 0; | 144 GetExperimentalBluetoothDeviceClient() = 0; |
| 145 virtual ExperimentalBluetoothInputClient* |
| 146 GetExperimentalBluetoothInputClient() = 0; |
| 144 virtual ExperimentalBluetoothProfileManagerClient* | 147 virtual ExperimentalBluetoothProfileManagerClient* |
| 145 GetExperimentalBluetoothProfileManagerClient() = 0; | 148 GetExperimentalBluetoothProfileManagerClient() = 0; |
| 146 virtual GsmSMSClient* GetGsmSMSClient() = 0; | 149 virtual GsmSMSClient* GetGsmSMSClient() = 0; |
| 147 virtual IBusClient* GetIBusClient() = 0; | 150 virtual IBusClient* GetIBusClient() = 0; |
| 148 virtual IBusConfigClient* GetIBusConfigClient() = 0; | 151 virtual IBusConfigClient* GetIBusConfigClient() = 0; |
| 149 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() = 0; | 152 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() = 0; |
| 150 virtual IBusEngineService* GetIBusEngineService( | 153 virtual IBusEngineService* GetIBusEngineService( |
| 151 const dbus::ObjectPath& object_path) = 0; | 154 const dbus::ObjectPath& object_path) = 0; |
| 152 virtual IBusInputContextClient* GetIBusInputContextClient() = 0; | 155 virtual IBusInputContextClient* GetIBusInputContextClient() = 0; |
| 153 virtual IBusPanelService* GetIBusPanelService() = 0; | 156 virtual IBusPanelService* GetIBusPanelService() = 0; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 174 | 177 |
| 175 protected: | 178 protected: |
| 176 DBusThreadManager(); | 179 DBusThreadManager(); |
| 177 | 180 |
| 178 DISALLOW_COPY_AND_ASSIGN(DBusThreadManager); | 181 DISALLOW_COPY_AND_ASSIGN(DBusThreadManager); |
| 179 }; | 182 }; |
| 180 | 183 |
| 181 } // namespace chromeos | 184 } // namespace chromeos |
| 182 | 185 |
| 183 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ | 186 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ |
| OLD | NEW |