| 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_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 11 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
| 9 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" | 12 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" |
| 10 #include "ui/base/ime/chromeos/fake_ime_keyboard.h" | 13 #include "ui/base/ime/chromeos/fake_ime_keyboard.h" |
| 11 #include "ui/base/ime/chromeos/fake_input_method_delegate.h" | 14 #include "ui/base/ime/chromeos/fake_input_method_delegate.h" |
| 12 #include "ui/base/ime/chromeos/input_method_manager.h" | 15 #include "ui/base/ime/chromeos/input_method_manager.h" |
| 13 #include "ui/base/ime/chromeos/input_method_whitelist.h" | 16 #include "ui/base/ime/chromeos/input_method_whitelist.h" |
| 14 | 17 |
| 15 namespace chromeos { | 18 namespace chromeos { |
| 16 namespace input_method { | 19 namespace input_method { |
| 17 | 20 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 bool mod3_used_; | 122 bool mod3_used_; |
| 120 scoped_ptr<ComponentExtensionIMEManager> comp_ime_manager_; | 123 scoped_ptr<ComponentExtensionIMEManager> comp_ime_manager_; |
| 121 | 124 |
| 122 DISALLOW_COPY_AND_ASSIGN(MockInputMethodManager); | 125 DISALLOW_COPY_AND_ASSIGN(MockInputMethodManager); |
| 123 }; | 126 }; |
| 124 | 127 |
| 125 } // namespace input_method | 128 } // namespace input_method |
| 126 } // namespace chromeos | 129 } // namespace chromeos |
| 127 | 130 |
| 128 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ | 131 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ |
| OLD | NEW |