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

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

Issue 12438013: Move InputMethod misc class from c/b/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_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 "chrome/browser/chromeos/input_method/input_method_config.h" 13 #include "chromeos/ime/input_method_config.h"
14 #include "chrome/browser/chromeos/input_method/input_method_property.h"
15 #include "chromeos/ime/input_method_descriptor.h" 14 #include "chromeos/ime/input_method_descriptor.h"
15 #include "chromeos/ime/input_method_property.h"
16 16
17 namespace ui { 17 namespace ui {
18 class Accelerator; 18 class Accelerator;
19 } // namespace ui 19 } // namespace ui
20 20
21 namespace chromeos { 21 namespace chromeos {
22 class InputMethodEngine; 22 class InputMethodEngine;
23 namespace input_method { 23 namespace input_method {
24 24
25 class InputMethodUtil; 25 class InputMethodUtil;
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 154
155 // Switches to an input method (or keyboard layout) which is associated with 155 // Switches to an input method (or keyboard layout) which is associated with
156 // the |accelerator|. 156 // the |accelerator|.
157 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0; 157 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0;
158 }; 158 };
159 159
160 } // namespace input_method 160 } // namespace input_method
161 } // namespace chromeos 161 } // namespace chromeos
162 162
163 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_ 163 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698