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

Unified Diff: Source/modules/websockets/CloseEvent.h

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/modules/websockets/CloseEvent.h
diff --git a/Source/modules/websockets/CloseEvent.h b/Source/modules/websockets/CloseEvent.h
index aab3c5ccd2dfaaa298f99e1eaed9a8e8cf5785ca..9256228214e474025856a9644235f21d47eeb92e 100644
--- a/Source/modules/websockets/CloseEvent.h
+++ b/Source/modules/websockets/CloseEvent.h
@@ -72,6 +72,8 @@ public:
// Event function.
virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::CloseEvent; }
+ virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); }
+
private:
CloseEvent()
: Event(EventTypeNames::close, false, false)

Powered by Google App Engine
This is Rietveld 408576698