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

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

Issue 2650403006: Remove PlatformMouseEvent and use WebMouseEvent instead (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: 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 db8af6744e0bbcb9994a38bfaa966165909090ab..6489494298abf168c7681e486a26380b9beff14b 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
@@ -70,7 +70,6 @@
#include "core/page/ChromeClient.h"
#include "core/page/Page.h"
#include "core/page/SpatialNavigation.h"
-#include "platform/PlatformMouseEvent.h"
#include "platform/PopupMenu.h"
#include "platform/instrumentation/tracing/TraceEvent.h"
#include "platform/text/PlatformLocale.h"
@@ -1288,7 +1287,7 @@ void HTMLSelectElement::menuListDefaultEventHandler(Event* event) {
return;
int ignoreModifiers = PlatformEvent::ShiftKey | PlatformEvent::CtrlKey |
- PlatformEvent::AltKey | PlatformMouseEvent::MetaKey;
+ PlatformEvent::AltKey | PlatformEvent::MetaKey;
if (keyEvent->modifiers() & ignoreModifiers)
return;

Powered by Google App Engine
This is Rietveld 408576698