| 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/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 class IntrospectableClient; | 44 class IntrospectableClient; |
| 45 class ModemMessagingClient; | 45 class ModemMessagingClient; |
| 46 class PermissionBrokerClient; | 46 class PermissionBrokerClient; |
| 47 class PowerManagerClient; | 47 class PowerManagerClient; |
| 48 class RootPowerManagerClient; | 48 class RootPowerManagerClient; |
| 49 class SMSClient; | 49 class SMSClient; |
| 50 class SessionManagerClient; | 50 class SessionManagerClient; |
| 51 class ShillDeviceClient; | 51 class ShillDeviceClient; |
| 52 class ShillIPConfigClient; | 52 class ShillIPConfigClient; |
| 53 class ShillManagerClient; | 53 class ShillManagerClient; |
| 54 class ShillNetworkClient; | |
| 55 class ShillProfileClient; | 54 class ShillProfileClient; |
| 56 class ShillServiceClient; | 55 class ShillServiceClient; |
| 57 class SpeechSynthesizerClient; | 56 class SpeechSynthesizerClient; |
| 58 class UpdateEngineClient; | 57 class UpdateEngineClient; |
| 59 | 58 |
| 60 // TODO(nona): Remove ibus namespace after complete libibus removal. | 59 // TODO(nona): Remove ibus namespace after complete libibus removal. |
| 61 namespace ibus { | 60 namespace ibus { |
| 62 class IBusPanelService; | 61 class IBusPanelService; |
| 63 } // namespace ibus | 62 } // namespace ibus |
| 64 | 63 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 virtual ImageBurnerClient* GetImageBurnerClient() = 0; | 140 virtual ImageBurnerClient* GetImageBurnerClient() = 0; |
| 142 virtual IntrospectableClient* GetIntrospectableClient() = 0; | 141 virtual IntrospectableClient* GetIntrospectableClient() = 0; |
| 143 virtual ModemMessagingClient* GetModemMessagingClient() = 0; | 142 virtual ModemMessagingClient* GetModemMessagingClient() = 0; |
| 144 virtual PermissionBrokerClient* GetPermissionBrokerClient() = 0; | 143 virtual PermissionBrokerClient* GetPermissionBrokerClient() = 0; |
| 145 virtual PowerManagerClient* GetPowerManagerClient() = 0; | 144 virtual PowerManagerClient* GetPowerManagerClient() = 0; |
| 146 virtual RootPowerManagerClient* GetRootPowerManagerClient() = 0; | 145 virtual RootPowerManagerClient* GetRootPowerManagerClient() = 0; |
| 147 virtual SessionManagerClient* GetSessionManagerClient() = 0; | 146 virtual SessionManagerClient* GetSessionManagerClient() = 0; |
| 148 virtual ShillDeviceClient* GetShillDeviceClient() = 0; | 147 virtual ShillDeviceClient* GetShillDeviceClient() = 0; |
| 149 virtual ShillIPConfigClient* GetShillIPConfigClient() = 0; | 148 virtual ShillIPConfigClient* GetShillIPConfigClient() = 0; |
| 150 virtual ShillManagerClient* GetShillManagerClient() = 0; | 149 virtual ShillManagerClient* GetShillManagerClient() = 0; |
| 151 virtual ShillNetworkClient* GetShillNetworkClient() = 0; | |
| 152 virtual ShillProfileClient* GetShillProfileClient() = 0; | 150 virtual ShillProfileClient* GetShillProfileClient() = 0; |
| 153 virtual ShillServiceClient* GetShillServiceClient() = 0; | 151 virtual ShillServiceClient* GetShillServiceClient() = 0; |
| 154 virtual SMSClient* GetSMSClient() = 0; | 152 virtual SMSClient* GetSMSClient() = 0; |
| 155 virtual SpeechSynthesizerClient* GetSpeechSynthesizerClient() = 0; | 153 virtual SpeechSynthesizerClient* GetSpeechSynthesizerClient() = 0; |
| 156 virtual UpdateEngineClient* GetUpdateEngineClient() = 0; | 154 virtual UpdateEngineClient* GetUpdateEngineClient() = 0; |
| 157 | 155 |
| 158 // Removes the ibus engine services for |object_path|. | 156 // Removes the ibus engine services for |object_path|. |
| 159 virtual void RemoveIBusEngineService(const dbus::ObjectPath& object_path) = 0; | 157 virtual void RemoveIBusEngineService(const dbus::ObjectPath& object_path) = 0; |
| 160 | 158 |
| 161 virtual ~DBusThreadManager(); | 159 virtual ~DBusThreadManager(); |
| 162 | 160 |
| 163 protected: | 161 protected: |
| 164 DBusThreadManager(); | 162 DBusThreadManager(); |
| 165 | 163 |
| 166 DISALLOW_COPY_AND_ASSIGN(DBusThreadManager); | 164 DISALLOW_COPY_AND_ASSIGN(DBusThreadManager); |
| 167 }; | 165 }; |
| 168 | 166 |
| 169 } // namespace chromeos | 167 } // namespace chromeos |
| 170 | 168 |
| 171 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ | 169 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ |
| OLD | NEW |