| 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> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <string> | 11 #include <string> |
| 10 #include <vector> | 12 #include <vector> |
| 11 | 13 |
| 14 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 14 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
| 15 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" | 18 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" |
| 16 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 19 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
| 17 #include "chrome/browser/profiles/profile.h" | 20 #include "chrome/browser/profiles/profile.h" |
| 18 #include "ui/base/ime/chromeos/input_method_manager.h" | 21 #include "ui/base/ime/chromeos/input_method_manager.h" |
| 19 #include "ui/base/ime/chromeos/input_method_whitelist.h" | 22 #include "ui/base/ime/chromeos/input_method_whitelist.h" |
| 20 #include "ui/base/ime/ime_engine_handler_interface.h" | 23 #include "ui/base/ime/ime_engine_handler_interface.h" |
| 21 | 24 |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; | 267 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; |
| 265 ProfileEngineMap engine_map_; | 268 ProfileEngineMap engine_map_; |
| 266 | 269 |
| 267 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 270 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
| 268 }; | 271 }; |
| 269 | 272 |
| 270 } // namespace input_method | 273 } // namespace input_method |
| 271 } // namespace chromeos | 274 } // namespace chromeos |
| 272 | 275 |
| 273 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 276 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
| OLD | NEW |