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

Unified Diff: Source/core/html/HTMLMediaElement.cpp

Issue 1248353002: Oilpan: fix build after r199375. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: finalize HTMLMediaElementEncryptedMedia, now needed Created 5 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
« no previous file with comments | « Source/core/html/HTMLMediaElement.h ('k') | Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaElement.cpp
diff --git a/Source/core/html/HTMLMediaElement.cpp b/Source/core/html/HTMLMediaElement.cpp
index bd7726c5c461e90110053a42e67328130ce0eb1e..47e62a65b6ab2a764e5c27369bedde49c86df3c5 100644
--- a/Source/core/html/HTMLMediaElement.cpp
+++ b/Source/core/html/HTMLMediaElement.cpp
@@ -3686,6 +3686,7 @@ DEFINE_TRACE(HTMLMediaElement)
visitor->trace(m_textTracksWhenResourceSelectionBegan);
visitor->trace(m_mediaController);
#if ENABLE(WEB_AUDIO)
+ visitor->trace(m_audioSourceProvider);
visitor->template registerWeakMembers<HTMLMediaElement, &HTMLMediaElement::clearWeakMembers>(this);
#endif
HeapSupplementable<HTMLMediaElement>::trace(visitor);
@@ -3787,6 +3788,11 @@ DEFINE_TRACE(HTMLMediaElement::AudioClientImpl)
{
visitor->trace(m_client);
}
+
+DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl)
+{
+ visitor->trace(m_client);
+}
#endif
}
« no previous file with comments | « Source/core/html/HTMLMediaElement.h ('k') | Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698