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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp

Issue 2655873003: Remove PlatformEvent it is no longer used. (Closed)
Patch Set: Remove PlatformEvent it is no longer used. Created 3 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: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
index bf75ddf1713273e7dbfc0962f824227ae8abb7ae..fe352c535ecfc9d2a09be45fb60f8816fffa66a6 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
@@ -1286,8 +1286,8 @@ void HTMLSelectElement::menuListDefaultEventHandler(Event* event) {
!isSpatialNavigationEnabled(document().frame()))
return;
- int ignoreModifiers = PlatformEvent::ShiftKey | PlatformEvent::CtrlKey |
- PlatformEvent::AltKey | PlatformEvent::MetaKey;
+ int ignoreModifiers = WebInputEvent::ShiftKey | WebInputEvent::ControlKey |
+ WebInputEvent::AltKey | WebInputEvent::MetaKey;
if (keyEvent->modifiers() & ignoreModifiers)
return;
« no previous file with comments | « third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp ('k') | third_party/WebKit/Source/core/input/EventHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698