| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/browser/chromeos/cros/input_method_library.h" | 11 #include "chrome/browser/chromeos/cros/input_method_library.h" |
| 12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 | 15 |
| 16 class MockInputMethodLibrary : public InputMethodLibrary { | 16 class MockInputMethodLibrary : public InputMethodLibrary { |
| 17 public: | 17 public: |
| 18 MockInputMethodLibrary() {} | 18 MockInputMethodLibrary() {} |
| 19 virtual ~MockInputMethodLibrary() {} | 19 virtual ~MockInputMethodLibrary() {} |
| 20 | 20 |
| 21 MOCK_METHOD1(AddObserver, void(Observer*)); | 21 MOCK_METHOD1(AddObserver, void(Observer*)); |
| 22 MOCK_METHOD1(RemoveObserver, void(Observer*)); | 22 MOCK_METHOD1(RemoveObserver, void(Observer*)); |
| 23 | 23 |
| 24 MOCK_METHOD0(GetActiveInputMethods, InputMethodDescriptors*(void)); | 24 MOCK_METHOD0(GetActiveInputMethods, InputMethodDescriptors*(void)); |
| 25 MOCK_METHOD0(GetNumActiveInputMethods, size_t(void)); | 25 MOCK_METHOD0(GetNumActiveInputMethods, size_t(void)); |
| 26 MOCK_METHOD0(GetSupportedInputMethods, InputMethodDescriptors*(void)); | 26 MOCK_METHOD0(GetSupportedInputMethods, InputMethodDescriptors*(void)); |
| 27 MOCK_METHOD1(ChangeInputMethod, void(const std::string&)); | 27 MOCK_METHOD1(ChangeInputMethod, void(const std::string&)); |
| 28 MOCK_METHOD2(SetImePropertyActivated, void(const std::string&, bool)); | 28 MOCK_METHOD2(SetImePropertyActivated, void(const std::string&, bool)); |
| 29 MOCK_METHOD1(InputMethodIsActivated, bool(const std::string&)); | 29 MOCK_METHOD1(InputMethodIsActivated, bool(const std::string&)); |
| 30 MOCK_METHOD3(GetImeConfig, bool(const char*, const char*, ImeConfigValue*)); | 30 MOCK_METHOD3(GetImeConfig, bool(const std::string&, const std::string&, |
| 31 MOCK_METHOD3(SetImeConfig, bool(const char*, const char*, | 31 ImeConfigValue*)); |
| 32 MOCK_METHOD3(SetImeConfig, bool(const std::string&, const std::string&, |
| 32 const ImeConfigValue&)); | 33 const ImeConfigValue&)); |
| 33 MOCK_CONST_METHOD0(previous_input_method, const InputMethodDescriptor&(void)); | 34 MOCK_CONST_METHOD0(previous_input_method, const InputMethodDescriptor&(void)); |
| 34 MOCK_CONST_METHOD0(current_input_method, const InputMethodDescriptor&(void)); | 35 MOCK_CONST_METHOD0(current_input_method, const InputMethodDescriptor&(void)); |
| 35 MOCK_CONST_METHOD0(current_ime_properties, const ImePropertyList&(void)); | 36 MOCK_CONST_METHOD0(current_ime_properties, const ImePropertyList&(void)); |
| 36 MOCK_METHOD0(StartInputMethodProcesses, void(void)); | 37 MOCK_METHOD0(StartInputMethodProcesses, void(void)); |
| 37 MOCK_METHOD0(StopInputMethodProcesses, void(void)); | 38 MOCK_METHOD0(StopInputMethodProcesses, void(void)); |
| 38 MOCK_METHOD1(SetDeferImeStartup, void(bool)); | 39 MOCK_METHOD1(SetDeferImeStartup, void(bool)); |
| 39 MOCK_METHOD1(SetEnableAutoImeShutdown, void(bool)); | 40 MOCK_METHOD1(SetEnableAutoImeShutdown, void(bool)); |
| 40 }; | 41 }; |
| 41 | 42 |
| 42 } // namespace chromeos | 43 } // namespace chromeos |
| 43 | 44 |
| 44 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ | 45 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ |
| OLD | NEW |