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_WITHOUT_GMOCK_H_ | 5 #ifndef CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_ |
6 #define CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_ | 6 #define CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 virtual UpdateEngineClient* GetUpdateEngineClient() OVERRIDE; | 65 virtual UpdateEngineClient* GetUpdateEngineClient() OVERRIDE; |
66 virtual BluetoothOutOfBandClient* GetBluetoothOutOfBandClient() OVERRIDE; | 66 virtual BluetoothOutOfBandClient* GetBluetoothOutOfBandClient() OVERRIDE; |
67 virtual IBusClient* GetIBusClient() OVERRIDE; | 67 virtual IBusClient* GetIBusClient() OVERRIDE; |
68 virtual IBusConfigClient* GetIBusConfigClient() OVERRIDE; | 68 virtual IBusConfigClient* GetIBusConfigClient() OVERRIDE; |
69 virtual IBusInputContextClient* GetIBusInputContextClient() OVERRIDE; | 69 virtual IBusInputContextClient* GetIBusInputContextClient() OVERRIDE; |
70 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() OVERRIDE; | 70 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() OVERRIDE; |
71 virtual IBusEngineService* GetIBusEngineService( | 71 virtual IBusEngineService* GetIBusEngineService( |
72 const dbus::ObjectPath& object_path) OVERRIDE; | 72 const dbus::ObjectPath& object_path) OVERRIDE; |
73 virtual void RemoveIBusEngineService( | 73 virtual void RemoveIBusEngineService( |
74 const dbus::ObjectPath& object_path) OVERRIDE; | 74 const dbus::ObjectPath& object_path) OVERRIDE; |
75 virtual ibus::IBusPanelService* GetIBusPanelService() OVERRIDE; | 75 virtual IBusPanelService* GetIBusPanelService() OVERRIDE; |
76 | 76 |
77 MockIBusClient* mock_ibus_client() { | 77 MockIBusClient* mock_ibus_client() { |
78 return mock_ibus_client_.get(); | 78 return mock_ibus_client_.get(); |
79 } | 79 } |
80 | 80 |
81 MockIBusConfigClient* mock_ibus_config_client() { | 81 MockIBusConfigClient* mock_ibus_config_client() { |
82 return mock_ibus_config_client_.get(); | 82 return mock_ibus_config_client_.get(); |
83 } | 83 } |
84 | 84 |
85 MockIBusInputContextClient* mock_ibus_input_context_client() { | 85 MockIBusInputContextClient* mock_ibus_input_context_client() { |
(...skipping 27 matching lines...) Expand all Loading... |
113 dbus::Bus* ibus_bus_; | 113 dbus::Bus* ibus_bus_; |
114 | 114 |
115 ObserverList<DBusThreadManagerObserver> observers_; | 115 ObserverList<DBusThreadManagerObserver> observers_; |
116 | 116 |
117 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManagerWithoutGMock); | 117 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManagerWithoutGMock); |
118 }; | 118 }; |
119 | 119 |
120 } // namespace chromeos | 120 } // namespace chromeos |
121 | 121 |
122 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_ | 122 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_ |
OLD | NEW |