| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // | |
| 5 // TODO(satorux): Move this from 'cros' directory to 'input_method' | |
| 6 // directory. | |
| 7 | 4 |
| 8 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ |
| 9 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ |
| 10 #pragma once | 7 #pragma once |
| 11 | 8 |
| 12 #include <map> | 9 #include <map> |
| 13 #include <set> | 10 #include <set> |
| 14 #include <string> | 11 #include <string> |
| 15 #include <utility> | 12 #include <utility> |
| 16 #include <vector> | 13 #include <vector> |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 virtual InputMethodDescriptor previous_input_method() const = 0; | 245 virtual InputMethodDescriptor previous_input_method() const = 0; |
| 249 virtual InputMethodDescriptor current_input_method() const = 0; | 246 virtual InputMethodDescriptor current_input_method() const = 0; |
| 250 | 247 |
| 251 virtual const ImePropertyList& current_ime_properties() const = 0; | 248 virtual const ImePropertyList& current_ime_properties() const = 0; |
| 252 }; | 249 }; |
| 253 | 250 |
| 254 } // namespace input_method | 251 } // namespace input_method |
| 255 } // namespace chromeos | 252 } // namespace chromeos |
| 256 | 253 |
| 257 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ | 254 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ |
| OLD | NEW |