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

Unified Diff: ui/events/blink/blink_features.cc

Issue 2614163002: Turn MoveLeave event sending into a feature for testing enabling it. (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
« no previous file with comments | « ui/events/blink/blink_features.h ('k') | ui/events/blink/web_input_event.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/blink/blink_features.cc
diff --git a/ui/events/blink/blink_features.cc b/ui/events/blink/blink_features.cc
index 9c06c8658c635d3363db31fefd4740b23794b38c..427ccf2563735d340bd9a1416b80e8f3769f1950 100644
--- a/ui/events/blink/blink_features.cc
+++ b/ui/events/blink/blink_features.cc
@@ -11,4 +11,14 @@ namespace features {
const base::Feature kVsyncAlignedInputEvents{"VsyncAlignedInput",
base::FEATURE_DISABLED_BY_DEFAULT};
+const base::Feature kSendMouseLeaveEvents {
+ "SendMouseLeaveEvents",
+// TODO(chaopeng) this fix only for chromeos now, should convert ET_MOUSE_EXITED
+// to MouseLeave when crbug.com/450631 fixed.
+#if defined(OS_CHROMEOS)
+ base::FEATURE_ENABLED_BY_DEFAULT
+#else
+ base::FEATURE_DISABLED_BY_DEFAULT
+#endif
+};
}
« no previous file with comments | « ui/events/blink/blink_features.h ('k') | ui/events/blink/web_input_event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698