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

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

Issue 181153003: Make Event RefCountedGarbageCollected and implement trace() methods to the Event hierarcy (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/core/events/GestureEvent.cpp
diff --git a/Source/core/events/GestureEvent.cpp b/Source/core/events/GestureEvent.cpp
index d8e5ca187a3d1d389de6dfbf29ff4f7f9f18e24d..645b72a41ca4e0aaa04473378caa5a629625c352 100644
--- a/Source/core/events/GestureEvent.cpp
+++ b/Source/core/events/GestureEvent.cpp
@@ -94,6 +94,11 @@ GestureEvent::GestureEvent(const AtomicString& type, PassRefPtr<AbstractView> vi
{
}
+void GestureEvent::trace(Visitor* visitor)
+{
+ MouseRelatedEvent::trace(visitor);
+}
+
GestureEventDispatchMediator::GestureEventDispatchMediator(PassRefPtr<GestureEvent> gestureEvent)
: EventDispatchMediator(gestureEvent)
{

Powered by Google App Engine
This is Rietveld 408576698