| 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> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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; |
| 33 class InputMethodEngine; | |
| 34 namespace input_method { | 33 namespace input_method { |
| 35 class InputMethodDelegate; | 34 class InputMethodDelegate; |
| 36 class ImeKeyboard; | 35 class ImeKeyboard; |
| 37 | 36 |
| 38 // The implementation of InputMethodManager. | 37 // The implementation of InputMethodManager. |
| 39 class InputMethodManagerImpl : public InputMethodManager, | 38 class InputMethodManagerImpl : public InputMethodManager, |
| 40 public CandidateWindowController::Observer, | 39 public CandidateWindowController::Observer, |
| 41 public UserAddingScreen::Observer { | 40 public UserAddingScreen::Observer { |
| 42 public: | 41 public: |
| 43 class StateImpl : public InputMethodManager::State { | 42 class StateImpl : public InputMethodManager::State { |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; | 297 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; |
| 299 ProfileEngineMap engine_map_; | 298 ProfileEngineMap engine_map_; |
| 300 | 299 |
| 301 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 300 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
| 302 }; | 301 }; |
| 303 | 302 |
| 304 } // namespace input_method | 303 } // namespace input_method |
| 305 } // namespace chromeos | 304 } // namespace chromeos |
| 306 | 305 |
| 307 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 306 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
| OLD | NEW |