| 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/ibus_controller.h" | 16 #include "chrome/browser/chromeos/input_method/ibus_controller.h" |
| 17 #include "chrome/browser/chromeos/input_method/input_method_manager.h" | |
| 18 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 17 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
| 19 #include "chromeos/ime/ibus_daemon_controller.h" | 18 #include "chromeos/ime/ibus_daemon_controller.h" |
| 19 #include "chromeos/ime/input_method_manager.h" |
| 20 #include "chromeos/ime/input_method_whitelist.h" | 20 #include "chromeos/ime/input_method_whitelist.h" |
| 21 | 21 |
| 22 namespace chromeos { | 22 namespace chromeos { |
| 23 class ComponentExtensionIMEManager; | 23 class ComponentExtensionIMEManager; |
| 24 class ComponentExtensionIMEManagerDelegate; | 24 class ComponentExtensionIMEManagerDelegate; |
| 25 class InputMethodEngineIBus; | 25 class InputMethodEngineIBus; |
| 26 namespace input_method { | 26 namespace input_method { |
| 27 class InputMethodDelegate; | 27 class InputMethodDelegate; |
| 28 class XKeyboard; | 28 class XKeyboard; |
| 29 | 29 |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 base::WeakPtrFactory<InputMethodManagerImpl> weak_ptr_factory_; | 215 base::WeakPtrFactory<InputMethodManagerImpl> weak_ptr_factory_; |
| 216 | 216 |
| 217 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 217 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 } // namespace input_method | 220 } // namespace input_method |
| 221 } // namespace chromeos | 221 } // namespace chromeos |
| 222 | 222 |
| 223 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 223 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
| OLD | NEW |