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

Unified Diff: Source/modules/presentation/DefaultSessionStartEvent.h

Issue 995923002: Oilpan: fix build after r191643 (4e6a640c). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | Source/modules/presentation/DefaultSessionStartEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/presentation/DefaultSessionStartEvent.h
diff --git a/Source/modules/presentation/DefaultSessionStartEvent.h b/Source/modules/presentation/DefaultSessionStartEvent.h
index 61f3d82a184ef0a530a6d1aaac41c9ed146d067e..fe779d75438bb4237db6564a09996fbb79de8125 100644
--- a/Source/modules/presentation/DefaultSessionStartEvent.h
+++ b/Source/modules/presentation/DefaultSessionStartEvent.h
@@ -38,12 +38,14 @@ public:
virtual const AtomicString& interfaceName() const override;
+ DECLARE_VIRTUAL_TRACE();
+
private:
DefaultSessionStartEvent();
DefaultSessionStartEvent(const AtomicString& eventType, PresentationSession*);
DefaultSessionStartEvent(const AtomicString& eventType, const DefaultSessionStartEventInit& initializer);
- Persistent<PresentationSession> m_session;
+ PersistentWillBeMember<PresentationSession> m_session;
};
DEFINE_TYPE_CASTS(DefaultSessionStartEvent, Event, event, event->interfaceName() == EventNames::DefaultSessionStartEvent, event.interfaceName() == EventNames::DefaultSessionStartEvent);
« no previous file with comments | « no previous file | Source/modules/presentation/DefaultSessionStartEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698