Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: chrome/browser/chromeos/input_method/input_method_manager_impl.h

Issue 14427002: Move InputMethodManager from c/b/chromeos to chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing old header Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698