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

Unified Diff: ash/host/ash_window_tree_host_ozone.cc

Issue 1209913002: InputMethod should stop TextInputClient::InsertChar/InsertText calls when the event is stopped prop… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed test failures. Created 5 years, 6 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: ash/host/ash_window_tree_host_ozone.cc
diff --git a/ash/host/ash_window_tree_host_ozone.cc b/ash/host/ash_window_tree_host_ozone.cc
index 3926fdff12425cf19e57a6def2fa79834016e7de..eca31179fb2880df13ea10bc92fb78e2abee3474 100644
--- a/ash/host/ash_window_tree_host_ozone.cc
+++ b/ash/host/ash_window_tree_host_ozone.cc
@@ -147,7 +147,7 @@ bool AshWindowTreeHostOzone::DispatchKeyEventPostIME(
input_method_handler()->SetPostIME(true);
ui::EventSource::DeliverEventToProcessor(&event_copy);
input_method_handler()->SetPostIME(false);
- return event_copy.handled();
+ return event_copy.stopped_propagation();
}
void AshWindowTreeHostOzone::SetTapToClickPaused(bool state) {

Powered by Google App Engine
This is Rietveld 408576698