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 <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
17 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
18 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" | 18 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" |
19 #include "chrome/browser/chromeos/input_method/input_method_util.h" | |
20 #include "chrome/browser/chromeos/login/ui/user_adding_screen.h" | 19 #include "chrome/browser/chromeos/login/ui/user_adding_screen.h" |
21 #include "chrome/browser/profiles/profile.h" | 20 #include "chrome/browser/profiles/profile.h" |
22 #include "ui/base/ime/chromeos/input_method_manager.h" | 21 #include "ui/base/ime/chromeos/input_method_manager.h" |
| 22 #include "ui/base/ime/chromeos/input_method_util.h" |
23 #include "ui/base/ime/chromeos/input_method_whitelist.h" | 23 #include "ui/base/ime/chromeos/input_method_whitelist.h" |
24 #include "ui/base/ime/ime_engine_handler_interface.h" | 24 #include "ui/base/ime/ime_engine_handler_interface.h" |
25 | 25 |
26 namespace ui { | 26 namespace ui { |
27 class IMEEngineHandlerInterface; | 27 class IMEEngineHandlerInterface; |
28 } // namespace ui | 28 } // namespace ui |
29 | 29 |
30 namespace chromeos { | 30 namespace chromeos { |
31 class ComponentExtensionIMEManager; | 31 class ComponentExtensionIMEManager; |
32 class ComponentExtensionIMEManagerDelegate; | 32 class ComponentExtensionIMEManagerDelegate; |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; | 311 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; |
312 ProfileEngineMap engine_map_; | 312 ProfileEngineMap engine_map_; |
313 | 313 |
314 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 314 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
315 }; | 315 }; |
316 | 316 |
317 } // namespace input_method | 317 } // namespace input_method |
318 } // namespace chromeos | 318 } // namespace chromeos |
319 | 319 |
320 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 320 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
OLD | NEW |