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

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

Issue 12453011: Move InputMethodManager to chromeos/ime (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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_DELEGATE_H_
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_DELEGATE_H_
7
8 #include <string>
9
10 #include "base/basictypes.h"
11
12 namespace chromeos {
13 namespace input_method {
14
15 // Provides access to read/persist Input Method-related properties.
16 class InputMethodDelegate {
17 public:
18 InputMethodDelegate() {}
19 virtual ~InputMethodDelegate() {}
20
21 // Retrieves the hardware keyboard layout ID. May return an empty string if
22 // the ID is unknown.
23 virtual std::string GetHardwareKeyboardLayout() const = 0;
24 // Retrieves the currently active UI locale.
25 virtual std::string GetActiveLocale() const = 0;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(InputMethodDelegate);
29 };
30
31 } // namespace input_method
32 } // namespace chromeos
33
34 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698