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

Unified Diff: Source/modules/encryptedmedia/MediaKeySession.cpp

Issue 463413002: Oilpan: Fix RawPtr to Member in MediaKeySession::PendingAction (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/encryptedmedia/MediaKeySession.cpp
diff --git a/Source/modules/encryptedmedia/MediaKeySession.cpp b/Source/modules/encryptedmedia/MediaKeySession.cpp
index 927694730054c8646ef3bf5a1ea8135452557af2..cdd5a1581e49dadd61d16b294dbd35793c9a03d8 100644
--- a/Source/modules/encryptedmedia/MediaKeySession.cpp
+++ b/Source/modules/encryptedmedia/MediaKeySession.cpp
@@ -105,6 +105,7 @@ public:
void trace(Visitor* visitor)
{
visitor->trace(m_result);
+ visitor->trace(m_event);
}
private:
@@ -124,7 +125,7 @@ private:
const Type m_type;
const Member<ContentDecryptionModuleResult> m_result;
const RefPtr<ArrayBuffer> m_data;
- const RefPtrWillBeRawPtr<Event> m_event;
+ const RefPtrWillBeMember<Event> m_event;
};
// This class allows a MediaKeySession object to be created asynchronously.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698