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

Unified Diff: ui/base/ime/dummy_input_method.cc

Issue 2298123003: Using input language instead of the application locale to determine the Omnibox's text input type o… (Closed)
Patch Set: ..... Created 4 years, 4 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: ui/base/ime/dummy_input_method.cc
diff --git a/ui/base/ime/dummy_input_method.cc b/ui/base/ime/dummy_input_method.cc
index 62c3af0438ad1fb29964fa500ccc67a2170cd0d4..c5c6524fe2edb78787800045e9900ad465bf7191 100644
--- a/ui/base/ime/dummy_input_method.cc
+++ b/ui/base/ime/dummy_input_method.cc
@@ -52,8 +52,8 @@ void DummyInputMethod::CancelComposition(const TextInputClient* client) {
void DummyInputMethod::OnInputLocaleChanged() {
}
-std::string DummyInputMethod::GetInputLocale() {
- return std::string();
+bool DummyInputMethod::IsInputLocaleCJK() const {
+ return false;
}
TextInputType DummyInputMethod::GetTextInputType() const {

Powered by Google App Engine
This is Rietveld 408576698