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_MOCK_DBUS_THREAD_MANAGER_H_ | 5 #ifndef CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_ |
6 #define CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_ | 6 #define CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 MOCK_METHOD0(GetCrasAudioClient, CrasAudioClient*(void)); | 79 MOCK_METHOD0(GetCrasAudioClient, CrasAudioClient*(void)); |
80 MOCK_METHOD0(GetCrosDisksClient, CrosDisksClient*(void)); | 80 MOCK_METHOD0(GetCrosDisksClient, CrosDisksClient*(void)); |
81 MOCK_METHOD0(GetCryptohomeClient, CryptohomeClient*(void)); | 81 MOCK_METHOD0(GetCryptohomeClient, CryptohomeClient*(void)); |
82 MOCK_METHOD0(GetDebugDaemonClient, DebugDaemonClient*(void)); | 82 MOCK_METHOD0(GetDebugDaemonClient, DebugDaemonClient*(void)); |
83 MOCK_METHOD0(GetExperimentalBluetoothAdapterClient, | 83 MOCK_METHOD0(GetExperimentalBluetoothAdapterClient, |
84 ExperimentalBluetoothAdapterClient*(void)); | 84 ExperimentalBluetoothAdapterClient*(void)); |
85 MOCK_METHOD0(GetExperimentalBluetoothAgentManagerClient, | 85 MOCK_METHOD0(GetExperimentalBluetoothAgentManagerClient, |
86 ExperimentalBluetoothAgentManagerClient*(void)); | 86 ExperimentalBluetoothAgentManagerClient*(void)); |
87 MOCK_METHOD0(GetExperimentalBluetoothDeviceClient, | 87 MOCK_METHOD0(GetExperimentalBluetoothDeviceClient, |
88 ExperimentalBluetoothDeviceClient*(void)); | 88 ExperimentalBluetoothDeviceClient*(void)); |
| 89 MOCK_METHOD0(GetExperimentalBluetoothInputClient, |
| 90 ExperimentalBluetoothInputClient*(void)); |
89 MOCK_METHOD0(GetExperimentalBluetoothProfileManagerClient, | 91 MOCK_METHOD0(GetExperimentalBluetoothProfileManagerClient, |
90 ExperimentalBluetoothProfileManagerClient*(void)); | 92 ExperimentalBluetoothProfileManagerClient*(void)); |
91 MOCK_METHOD0(GetShillDeviceClient, ShillDeviceClient*(void)); | 93 MOCK_METHOD0(GetShillDeviceClient, ShillDeviceClient*(void)); |
92 MOCK_METHOD0(GetShillIPConfigClient, ShillIPConfigClient*(void)); | 94 MOCK_METHOD0(GetShillIPConfigClient, ShillIPConfigClient*(void)); |
93 MOCK_METHOD0(GetShillManagerClient, ShillManagerClient*(void)); | 95 MOCK_METHOD0(GetShillManagerClient, ShillManagerClient*(void)); |
94 MOCK_METHOD0(GetShillProfileClient, ShillProfileClient*(void)); | 96 MOCK_METHOD0(GetShillProfileClient, ShillProfileClient*(void)); |
95 MOCK_METHOD0(GetShillServiceClient, ShillServiceClient*(void)); | 97 MOCK_METHOD0(GetShillServiceClient, ShillServiceClient*(void)); |
96 MOCK_METHOD0(GetGsmSMSClient, GsmSMSClient*(void)); | 98 MOCK_METHOD0(GetGsmSMSClient, GsmSMSClient*(void)); |
97 MOCK_METHOD0(GetImageBurnerClient, ImageBurnerClient*(void)); | 99 MOCK_METHOD0(GetImageBurnerClient, ImageBurnerClient*(void)); |
98 MOCK_METHOD0(GetIntrospectableClient, IntrospectableClient*(void)); | 100 MOCK_METHOD0(GetIntrospectableClient, IntrospectableClient*(void)); |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 scoped_ptr<MockIBusEngineService> mock_ibus_engine_service_; | 267 scoped_ptr<MockIBusEngineService> mock_ibus_engine_service_; |
266 scoped_ptr<MockIBusEngineFactoryService> mock_ibus_engine_factory_service_; | 268 scoped_ptr<MockIBusEngineFactoryService> mock_ibus_engine_factory_service_; |
267 scoped_ptr<MockIBusPanelService> mock_ibus_panel_service_; | 269 scoped_ptr<MockIBusPanelService> mock_ibus_panel_service_; |
268 | 270 |
269 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManager); | 271 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManager); |
270 }; | 272 }; |
271 | 273 |
272 } // namespace chromeos | 274 } // namespace chromeos |
273 | 275 |
274 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_ | 276 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_ |
OLD | NEW |