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

Unified Diff: chromeos/ime/fake_input_method_delegate.cc

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: chromeos/ime/fake_input_method_delegate.cc
diff --git a/chromeos/ime/fake_input_method_delegate.cc b/chromeos/ime/fake_input_method_delegate.cc
index 2757750b7d77b390a10b0bf050d0a9f9df3ea777..ce41a897859a2c994076fccae4560616f8c788d3 100644
--- a/chromeos/ime/fake_input_method_delegate.cc
+++ b/chromeos/ime/fake_input_method_delegate.cc
@@ -14,8 +14,9 @@ FakeInputMethodDelegate::FakeInputMethodDelegate()
FakeInputMethodDelegate::~FakeInputMethodDelegate() {
}
-std::string FakeInputMethodDelegate::GetHardwareKeyboardLayout() const {
- return hardware_keyboard_layout_;
+void FakeInputMethodDelegate::GetHardwareKeyboardLayouts(
+ std::vector<std::string>* out) const {
+ *out = hardware_keyboard_layout_;
}
base::string16 FakeInputMethodDelegate::GetLocalizedString(

Powered by Google App Engine
This is Rietveld 408576698