| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 virtual SessionManagerClient* GetSessionManagerClient() OVERRIDE; | 57 virtual SessionManagerClient* GetSessionManagerClient() OVERRIDE; |
| 58 virtual SMSClient* GetSMSClient() OVERRIDE; | 58 virtual SMSClient* GetSMSClient() OVERRIDE; |
| 59 virtual SpeechSynthesizerClient* GetSpeechSynthesizerClient() OVERRIDE; | 59 virtual SpeechSynthesizerClient* GetSpeechSynthesizerClient() OVERRIDE; |
| 60 virtual UpdateEngineClient* GetUpdateEngineClient() OVERRIDE; | 60 virtual UpdateEngineClient* GetUpdateEngineClient() OVERRIDE; |
| 61 virtual BluetoothOutOfBandClient* GetBluetoothOutOfBandClient() OVERRIDE; | 61 virtual BluetoothOutOfBandClient* GetBluetoothOutOfBandClient() OVERRIDE; |
| 62 virtual IBusClient* GetIBusClient() OVERRIDE; | 62 virtual IBusClient* GetIBusClient() OVERRIDE; |
| 63 virtual IBusInputContextClient* GetIBusInputContextClient() OVERRIDE; | 63 virtual IBusInputContextClient* GetIBusInputContextClient() OVERRIDE; |
| 64 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() OVERRIDE; | 64 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() OVERRIDE; |
| 65 virtual IBusEngineService* GetIBusEngineService( | 65 virtual IBusEngineService* GetIBusEngineService( |
| 66 const dbus::ObjectPath& object_path) OVERRIDE; | 66 const dbus::ObjectPath& object_path) OVERRIDE; |
| 67 virtual void RemoveIBusEngineService( |
| 68 const dbus::ObjectPath& object_path) OVERRIDE; |
| 67 | 69 |
| 68 MockIBusClient* mock_ibus_client() { | 70 MockIBusClient* mock_ibus_client() { |
| 69 return mock_ibus_client_.get(); | 71 return mock_ibus_client_.get(); |
| 70 } | 72 } |
| 71 | 73 |
| 72 MockIBusInputContextClient* mock_ibus_input_context_client() { | 74 MockIBusInputContextClient* mock_ibus_input_context_client() { |
| 73 return mock_ibus_input_context_client_.get(); | 75 return mock_ibus_input_context_client_.get(); |
| 74 } | 76 } |
| 75 | 77 |
| 76 MockIBusEngineService* mock_ibus_engine_service() { | 78 MockIBusEngineService* mock_ibus_engine_service() { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 91 scoped_ptr<MockIBusEngineService> mock_ibus_engine_service_; | 93 scoped_ptr<MockIBusEngineService> mock_ibus_engine_service_; |
| 92 scoped_ptr<MockIBusEngineFactoryService> mock_ibus_engine_factory_service_; | 94 scoped_ptr<MockIBusEngineFactoryService> mock_ibus_engine_factory_service_; |
| 93 | 95 |
| 94 dbus::Bus* ibus_bus_; | 96 dbus::Bus* ibus_bus_; |
| 95 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManagerWithoutGMock); | 97 DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManagerWithoutGMock); |
| 96 }; | 98 }; |
| 97 | 99 |
| 98 } // namespace chromeos | 100 } // namespace chromeos |
| 99 | 101 |
| 100 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_ | 102 #endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_ |
| OLD | NEW |