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

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: Fix compile failure 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..1b2faf1cf2c0e46d6d886ec7a5b5fbda578940ae 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::GetHardwareKeyboardLayout(
+ std::vector<std::string>* out) const {
+ *out = hardware_keyboard_layout_;
}
base::string16 FakeInputMethodDelegate::GetLocalizedString(

Powered by Google App Engine
This is Rietveld 408576698