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_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_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 "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
15 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" | 15 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" |
16 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 16 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
18 #include "chromeos/ime/input_method_manager.h" | 18 #include "ui/base/ime/chromeos/input_method_manager.h" |
19 #include "chromeos/ime/input_method_whitelist.h" | 19 #include "ui/base/ime/chromeos/input_method_whitelist.h" |
20 | 20 |
21 namespace chromeos { | 21 namespace chromeos { |
22 class ComponentExtensionIMEManager; | 22 class ComponentExtensionIMEManager; |
23 class ComponentExtensionIMEManagerDelegate; | 23 class ComponentExtensionIMEManagerDelegate; |
24 class InputMethodEngine; | 24 class InputMethodEngine; |
25 namespace input_method { | 25 namespace input_method { |
26 class InputMethodDelegate; | 26 class InputMethodDelegate; |
27 class ImeKeyboard; | 27 class ImeKeyboard; |
28 | 28 |
29 // The implementation of InputMethodManager. | 29 // The implementation of InputMethodManager. |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 // Chinese Pinyin IME. Note "zh-hant-t-i0-pinyin" < "zh-t-i0-pinyin". | 269 // Chinese Pinyin IME. Note "zh-hant-t-i0-pinyin" < "zh-t-i0-pinyin". |
270 std::map<std::string, int> stat_id_map_; | 270 std::map<std::string, int> stat_id_map_; |
271 | 271 |
272 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 272 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
273 }; | 273 }; |
274 | 274 |
275 } // namespace input_method | 275 } // namespace input_method |
276 } // namespace chromeos | 276 } // namespace chromeos |
277 | 277 |
278 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 278 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
OLD | NEW |