Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(839)

Side by Side Diff: chromeos/dbus/mock_dbus_thread_manager.h

Issue 13959009: dbus: Remove unused GMock-ed clients. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/dbus/mock_dbus_thread_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 10 matching lines...) Expand all
21 21
22 class DBusThreadManagerObserver; 22 class DBusThreadManagerObserver;
23 class MockBluetoothAdapterClient; 23 class MockBluetoothAdapterClient;
24 class MockBluetoothDeviceClient; 24 class MockBluetoothDeviceClient;
25 class MockBluetoothInputClient; 25 class MockBluetoothInputClient;
26 class MockBluetoothManagerClient; 26 class MockBluetoothManagerClient;
27 class MockBluetoothNodeClient; 27 class MockBluetoothNodeClient;
28 class MockBluetoothOutOfBandClient; 28 class MockBluetoothOutOfBandClient;
29 class MockCrosDisksClient; 29 class MockCrosDisksClient;
30 class MockCryptohomeClient; 30 class MockCryptohomeClient;
31 class MockDebugDaemonClient;
32 class MockShillDeviceClient; 31 class MockShillDeviceClient;
33 class MockShillIPConfigClient; 32 class MockShillIPConfigClient;
34 class MockShillManagerClient; 33 class MockShillManagerClient;
35 class MockShillProfileClient; 34 class MockShillProfileClient;
36 class MockShillServiceClient; 35 class MockShillServiceClient;
37 class MockGsmSMSClient; 36 class MockGsmSMSClient;
38 class MockImageBurnerClient; 37 class MockImageBurnerClient;
39 class MockIntrospectableClient;
40 class MockModemMessagingClient;
41 class MockPermissionBrokerClient;
42 class MockPowerManagerClient; 38 class MockPowerManagerClient;
43 class MockSessionManagerClient; 39 class MockSessionManagerClient;
44 class MockSMSClient;
45 class MockSystemClockClient; 40 class MockSystemClockClient;
46 class MockUpdateEngineClient; 41 class MockUpdateEngineClient;
47 class MockIBusClient; 42 class MockIBusClient;
48 class MockIBusConfigClient; 43 class MockIBusConfigClient;
49 class MockIBusEngineFactoryService; 44 class MockIBusEngineFactoryService;
50 class MockIBusEngineService; 45 class MockIBusEngineService;
51 class MockIBusInputContextClient; 46 class MockIBusInputContextClient;
52 class MockIBusPanelService; 47 class MockIBusPanelService;
53 class PowerPolicyController; 48 class PowerPolicyController;
54 49
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 124 }
130 MockBluetoothOutOfBandClient* mock_bluetooth_out_of_band_client() { 125 MockBluetoothOutOfBandClient* mock_bluetooth_out_of_band_client() {
131 return mock_bluetooth_out_of_band_client_.get(); 126 return mock_bluetooth_out_of_band_client_.get();
132 } 127 }
133 MockCrosDisksClient* mock_cros_disks_client() { 128 MockCrosDisksClient* mock_cros_disks_client() {
134 return mock_cros_disks_client_.get(); 129 return mock_cros_disks_client_.get();
135 } 130 }
136 MockCryptohomeClient* mock_cryptohome_client() { 131 MockCryptohomeClient* mock_cryptohome_client() {
137 return mock_cryptohome_client_.get(); 132 return mock_cryptohome_client_.get();
138 } 133 }
139 MockDebugDaemonClient* mock_debugdaemon_client() {
140 return mock_debugdaemon_client_.get();
141 }
142 MockShillDeviceClient* mock_shill_device_client() { 134 MockShillDeviceClient* mock_shill_device_client() {
143 return mock_shill_device_client_.get(); 135 return mock_shill_device_client_.get();
144 } 136 }
145 MockShillIPConfigClient* mock_shill_ipconfig_client() { 137 MockShillIPConfigClient* mock_shill_ipconfig_client() {
146 return mock_shill_ipconfig_client_.get(); 138 return mock_shill_ipconfig_client_.get();
147 } 139 }
148 MockShillManagerClient* mock_shill_manager_client() { 140 MockShillManagerClient* mock_shill_manager_client() {
149 return mock_shill_manager_client_.get(); 141 return mock_shill_manager_client_.get();
150 } 142 }
151 MockShillProfileClient* mock_shill_profile_client() { 143 MockShillProfileClient* mock_shill_profile_client() {
152 return mock_shill_profile_client_.get(); 144 return mock_shill_profile_client_.get();
153 } 145 }
154 MockShillServiceClient* mock_shill_service_client() { 146 MockShillServiceClient* mock_shill_service_client() {
155 return mock_shill_service_client_.get(); 147 return mock_shill_service_client_.get();
156 } 148 }
157 MockGsmSMSClient* mock_gsm_sms_client() { 149 MockGsmSMSClient* mock_gsm_sms_client() {
158 return mock_gsm_sms_client_.get(); 150 return mock_gsm_sms_client_.get();
159 } 151 }
160 MockImageBurnerClient* mock_image_burner_client() { 152 MockImageBurnerClient* mock_image_burner_client() {
161 return mock_image_burner_client_.get(); 153 return mock_image_burner_client_.get();
162 } 154 }
163 MockIntrospectableClient* mock_introspectable_client() {
164 return mock_introspectable_client_.get();
165 }
166 MockModemMessagingClient* mock_modem_messaging_client() {
167 return mock_modem_messaging_client_.get();
168 }
169 MockPermissionBrokerClient* mock_permission_broker_client() {
170 return mock_permission_broker_client_.get();
171 }
172 MockPowerManagerClient* mock_power_manager_client() { 155 MockPowerManagerClient* mock_power_manager_client() {
173 return mock_power_manager_client_.get(); 156 return mock_power_manager_client_.get();
174 } 157 }
175 MockSessionManagerClient* mock_session_manager_client() { 158 MockSessionManagerClient* mock_session_manager_client() {
176 return mock_session_manager_client_.get(); 159 return mock_session_manager_client_.get();
177 } 160 }
178 MockSMSClient* mock_sms_client() {
179 return mock_sms_client_.get();
180 }
181 MockSystemClockClient* mock_system_clock_client() { 161 MockSystemClockClient* mock_system_clock_client() {
182 return mock_system_clock_client_.get(); 162 return mock_system_clock_client_.get();
183 } 163 }
184 MockUpdateEngineClient* mock_update_engine_client() { 164 MockUpdateEngineClient* mock_update_engine_client() {
185 return mock_update_engine_client_.get(); 165 return mock_update_engine_client_.get();
186 } 166 }
187 MockIBusClient* mock_ibus_client() { 167 MockIBusClient* mock_ibus_client() {
188 return mock_ibus_client_.get(); 168 return mock_ibus_client_.get();
189 } 169 }
190 MockIBusConfigClient* mock_ibus_config_client() { 170 MockIBusConfigClient* mock_ibus_config_client() {
(...skipping 18 matching lines...) Expand all
209 ObserverList<DBusThreadManagerObserver> observers_; 189 ObserverList<DBusThreadManagerObserver> observers_;
210 190
211 scoped_ptr<MockBluetoothAdapterClient> mock_bluetooth_adapter_client_; 191 scoped_ptr<MockBluetoothAdapterClient> mock_bluetooth_adapter_client_;
212 scoped_ptr<MockBluetoothDeviceClient> mock_bluetooth_device_client_; 192 scoped_ptr<MockBluetoothDeviceClient> mock_bluetooth_device_client_;
213 scoped_ptr<MockBluetoothInputClient> mock_bluetooth_input_client_; 193 scoped_ptr<MockBluetoothInputClient> mock_bluetooth_input_client_;
214 scoped_ptr<MockBluetoothManagerClient> mock_bluetooth_manager_client_; 194 scoped_ptr<MockBluetoothManagerClient> mock_bluetooth_manager_client_;
215 scoped_ptr<MockBluetoothNodeClient> mock_bluetooth_node_client_; 195 scoped_ptr<MockBluetoothNodeClient> mock_bluetooth_node_client_;
216 scoped_ptr<MockBluetoothOutOfBandClient> mock_bluetooth_out_of_band_client_; 196 scoped_ptr<MockBluetoothOutOfBandClient> mock_bluetooth_out_of_band_client_;
217 scoped_ptr<MockCrosDisksClient> mock_cros_disks_client_; 197 scoped_ptr<MockCrosDisksClient> mock_cros_disks_client_;
218 scoped_ptr<MockCryptohomeClient> mock_cryptohome_client_; 198 scoped_ptr<MockCryptohomeClient> mock_cryptohome_client_;
219 scoped_ptr<MockDebugDaemonClient> mock_debugdaemon_client_;
220 scoped_ptr<MockShillDeviceClient> mock_shill_device_client_; 199 scoped_ptr<MockShillDeviceClient> mock_shill_device_client_;
221 scoped_ptr<MockShillIPConfigClient> mock_shill_ipconfig_client_; 200 scoped_ptr<MockShillIPConfigClient> mock_shill_ipconfig_client_;
222 scoped_ptr<MockShillManagerClient> mock_shill_manager_client_; 201 scoped_ptr<MockShillManagerClient> mock_shill_manager_client_;
223 scoped_ptr<MockShillProfileClient> mock_shill_profile_client_; 202 scoped_ptr<MockShillProfileClient> mock_shill_profile_client_;
224 scoped_ptr<MockShillServiceClient> mock_shill_service_client_; 203 scoped_ptr<MockShillServiceClient> mock_shill_service_client_;
225 scoped_ptr<MockGsmSMSClient> mock_gsm_sms_client_; 204 scoped_ptr<MockGsmSMSClient> mock_gsm_sms_client_;
226 scoped_ptr<MockImageBurnerClient> mock_image_burner_client_; 205 scoped_ptr<MockImageBurnerClient> mock_image_burner_client_;
227 scoped_ptr<MockIntrospectableClient> mock_introspectable_client_;
228 scoped_ptr<MockModemMessagingClient> mock_modem_messaging_client_;
229 scoped_ptr<MockPermissionBrokerClient> mock_permission_broker_client_;
230 scoped_ptr<MockPowerManagerClient> mock_power_manager_client_; 206 scoped_ptr<MockPowerManagerClient> mock_power_manager_client_;
231 scoped_ptr<MockSessionManagerClient> mock_session_manager_client_; 207 scoped_ptr<MockSessionManagerClient> mock_session_manager_client_;
232 scoped_ptr<MockSMSClient> mock_sms_client_;
233 scoped_ptr<MockSystemClockClient> mock_system_clock_client_; 208 scoped_ptr<MockSystemClockClient> mock_system_clock_client_;
234 scoped_ptr<MockUpdateEngineClient> mock_update_engine_client_; 209 scoped_ptr<MockUpdateEngineClient> mock_update_engine_client_;
235 scoped_ptr<PowerPolicyController> power_policy_controller_; 210 scoped_ptr<PowerPolicyController> power_policy_controller_;
236 scoped_ptr<MockIBusClient> mock_ibus_client_; 211 scoped_ptr<MockIBusClient> mock_ibus_client_;
237 scoped_ptr<MockIBusConfigClient> mock_ibus_config_client_; 212 scoped_ptr<MockIBusConfigClient> mock_ibus_config_client_;
238 scoped_ptr<MockIBusInputContextClient> mock_ibus_input_context_client_; 213 scoped_ptr<MockIBusInputContextClient> mock_ibus_input_context_client_;
239 scoped_ptr<MockIBusEngineService> mock_ibus_engine_service_; 214 scoped_ptr<MockIBusEngineService> mock_ibus_engine_service_;
240 scoped_ptr<MockIBusEngineFactoryService> mock_ibus_engine_factory_service_; 215 scoped_ptr<MockIBusEngineFactoryService> mock_ibus_engine_factory_service_;
241 scoped_ptr<MockIBusPanelService> mock_ibus_panel_service_; 216 scoped_ptr<MockIBusPanelService> mock_ibus_panel_service_;
242 217
243 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManager); 218 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManager);
244 }; 219 };
245 220
246 } // namespace chromeos 221 } // namespace chromeos
247 222
248 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_ 223 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_
OLDNEW
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/dbus/mock_dbus_thread_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698