| 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 CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <utility> | 12 #include <utility> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
| 16 #include "base/time.h" | 16 #include "base/time.h" |
| 17 #include "base/timer.h" | 17 #include "base/timer.h" |
| 18 #include "chrome/browser/chromeos/input_method/ibus_controller.h" | 18 #include "chrome/browser/chromeos/input_method/input_method_config.h" |
| 19 #include "chrome/browser/chromeos/input_method/input_method_descriptor.h" |
| 20 #include "chrome/browser/chromeos/input_method/input_method_property.h" |
| 19 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 21 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
| 20 | 22 |
| 21 class GURL; | 23 class GURL; |
| 22 | 24 |
| 23 namespace ui { | 25 namespace ui { |
| 24 class Accelerator; | 26 class Accelerator; |
| 25 } // namespace ui | 27 } // namespace ui |
| 26 | 28 |
| 27 namespace chromeos { | 29 namespace chromeos { |
| 28 namespace input_method { | 30 namespace input_method { |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 virtual InputMethodDescriptor GetPreviousInputMethod() const = 0; | 274 virtual InputMethodDescriptor GetPreviousInputMethod() const = 0; |
| 273 virtual InputMethodDescriptor GetCurrentInputMethod() const = 0; | 275 virtual InputMethodDescriptor GetCurrentInputMethod() const = 0; |
| 274 | 276 |
| 275 virtual InputMethodPropertyList GetCurrentInputMethodProperties() const = 0; | 277 virtual InputMethodPropertyList GetCurrentInputMethodProperties() const = 0; |
| 276 }; | 278 }; |
| 277 | 279 |
| 278 } // namespace input_method | 280 } // namespace input_method |
| 279 } // namespace chromeos | 281 } // namespace chromeos |
| 280 | 282 |
| 281 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ | 283 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ |
| OLD | NEW |