| 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 CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_DELEGATE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/browser/chromeos/input_method/input_method_delegate.h" | 10 #include "chromeos/ime/input_method_delegate.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 namespace input_method { | 13 namespace input_method { |
| 14 | 14 |
| 15 class MockInputMethodDelegate : public InputMethodDelegate { | 15 class MockInputMethodDelegate : public InputMethodDelegate { |
| 16 public: | 16 public: |
| 17 MockInputMethodDelegate(); | 17 MockInputMethodDelegate(); |
| 18 virtual ~MockInputMethodDelegate(); | 18 virtual ~MockInputMethodDelegate(); |
| 19 | 19 |
| 20 // InputMethodDelegate implementation: | 20 // InputMethodDelegate implementation: |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 private: | 32 private: |
| 33 std::string hardware_keyboard_layout_; | 33 std::string hardware_keyboard_layout_; |
| 34 std::string active_locale_; | 34 std::string active_locale_; |
| 35 DISALLOW_COPY_AND_ASSIGN(MockInputMethodDelegate); | 35 DISALLOW_COPY_AND_ASSIGN(MockInputMethodDelegate); |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 } // namespace input_method | 38 } // namespace input_method |
| 39 } // namespace chromeos | 39 } // namespace chromeos |
| 40 | 40 |
| 41 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_DELEGATE_H_ | 41 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_DELEGATE_H_ |
| OLD | NEW |