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

Unified Diff: chrome/browser/ui/views/ime_driver/input_method_bridge_chromeos.cc

Issue 2626383002: IME for Mus: EnumTraits for TextInputMode and TextInputType. (Closed)
Patch Set: Created 3 years, 11 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/ui/views/ime_driver/input_method_bridge_chromeos.cc
diff --git a/chrome/browser/ui/views/ime_driver/input_method_bridge_chromeos.cc b/chrome/browser/ui/views/ime_driver/input_method_bridge_chromeos.cc
index a382fbc4718eec48bbf301eaaaedc5bfcb082905..522a5883168f6218c5adac49df2ef36acbcaa8e4 100644
--- a/chrome/browser/ui/views/ime_driver/input_method_bridge_chromeos.cc
+++ b/chrome/browser/ui/views/ime_driver/input_method_bridge_chromeos.cc
@@ -17,13 +17,13 @@ InputMethodBridge::InputMethodBridge(ui::mojom::TextInputClientPtr client)
InputMethodBridge::~InputMethodBridge() {}
void InputMethodBridge::OnTextInputModeChanged(
- ui::mojom::TextInputMode text_input_mode) {
+ ui::TextInputMode text_input_mode) {
// TODO(moshayedi): crbug.com/631527. Consider removing this, as
// ui::InputMethodChromeOS doesn't have this.
}
void InputMethodBridge::OnTextInputTypeChanged(
- ui::mojom::TextInputType text_input_type) {
+ ui::TextInputType text_input_type) {
input_method_chromeos_->OnTextInputTypeChanged(client_.get());
}

Powered by Google App Engine
This is Rietveld 408576698