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

Unified Diff: Source/core/events/Event.cpp

Issue 243403006: Implement contextmenu attribute with basic support of <menu> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move to oilpan Created 6 years, 5 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: Source/core/events/Event.cpp
diff --git a/Source/core/events/Event.cpp b/Source/core/events/Event.cpp
index f68c0e35e79dc9e51a45b7383cdc344489ddbb63..51596c1fed3a19100645a67f464624f0b15b9522 100644
--- a/Source/core/events/Event.cpp
+++ b/Source/core/events/Event.cpp
@@ -167,6 +167,11 @@ bool Event::isWheelEvent() const
return false;
}
+bool Event::isRelatedEvent() const
+{
+ return false;
+}
+
bool Event::isDragEvent() const
{
return false;

Powered by Google App Engine
This is Rietveld 408576698