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

Unified Diff: chrome/browser/chromeos/input_method/input_method_delegate_impl.h

Issue 139803010: Support comma separated hardware keyboard layout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/input_method/input_method_delegate_impl.h
diff --git a/chrome/browser/chromeos/input_method/input_method_delegate_impl.h b/chrome/browser/chromeos/input_method/input_method_delegate_impl.h
index 4d1920a5a82e846f1a69545a207f2cf0dedd9a46..be4931dae57a3c3b7844dc434de78fe0acc9fa04 100644
--- a/chrome/browser/chromeos/input_method/input_method_delegate_impl.h
+++ b/chrome/browser/chromeos/input_method/input_method_delegate_impl.h
@@ -6,6 +6,7 @@
#define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_DELEGATE_IMPL_H_
#include <string>
+#include <vector>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
@@ -19,14 +20,16 @@ namespace input_method {
class InputMethodDelegateImpl : public InputMethodDelegate {
public:
InputMethodDelegateImpl();
+ virtual ~InputMethodDelegateImpl();
// InputMethodDelegate implementation.
- virtual std::string GetHardwareKeyboardLayout() const OVERRIDE;
+ virtual std::string GetHardwareKeyboardLayouts() const OVERRIDE;
virtual base::string16 GetLocalizedString(int resource_id) const OVERRIDE;
virtual base::string16 GetDisplayLanguageName(
const std::string& language_code) const OVERRIDE;
private:
+ std::vector<std::string> hardware_layouts_;
Alexander Alekseev 2014/02/12 17:55:52 Unused?
Seigo Nonaka 2014/02/13 04:36:06 Done.
DISALLOW_COPY_AND_ASSIGN(InputMethodDelegateImpl);
};

Powered by Google App Engine
This is Rietveld 408576698