| 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_INPUT_METHOD_MANAGER_H_ | 5 #ifndef CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ | 6 #define CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "chromeos/ime/input_method_config.h" | 13 #include "chromeos/ime/input_method_config.h" |
| 14 #include "chromeos/ime/input_method_descriptor.h" | 14 #include "chromeos/ime/input_method_descriptor.h" |
| 15 #include "chromeos/ime/input_method_property.h" | 15 #include "chromeos/ime/input_method_property.h" |
| 16 | 16 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 virtual bool SwitchToPreviousInputMethod() = 0; | 157 virtual bool SwitchToPreviousInputMethod() = 0; |
| 158 | 158 |
| 159 // Switches to an input method (or keyboard layout) which is associated with | 159 // Switches to an input method (or keyboard layout) which is associated with |
| 160 // the |accelerator|. | 160 // the |accelerator|. |
| 161 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0; | 161 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0; |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 } // namespace input_method | 164 } // namespace input_method |
| 165 } // namespace chromeos | 165 } // namespace chromeos |
| 166 | 166 |
| 167 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ | 167 #endif // CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ |
| OLD | NEW |