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

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

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 | « no previous file | Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaElement.h
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h
index 281aa386e7db13eb7170eaa1cd760b84d6f8aed6..2bb0dd6888960b964924babfdecd28d794934ca2 100644
--- a/Source/core/html/HTMLMediaElement.h
+++ b/Source/core/html/HTMLMediaElement.h
@@ -586,6 +586,7 @@ private:
// AudioSourceProviderImpl wraps a WebAudioSourceProvider.
// provideInput() calls into Chromium to get a rendered audio stream.
class AudioSourceProviderImpl final : public AudioSourceProvider {
+ DISALLOW_ALLOCATION();
public:
AudioSourceProviderImpl()
: m_webAudioSourceProvider(nullptr)
@@ -601,9 +602,11 @@ private:
void setClient(AudioSourceProviderClient*) override;
void provideInput(AudioBus*, size_t framesToProcess) override;
+ DECLARE_TRACE();
+
private:
WebAudioSourceProvider* m_webAudioSourceProvider;
- Persistent<AudioClientImpl> m_client;
+ PersistentWillBeMember<AudioClientImpl> m_client;
Mutex provideInputLock;
};
« no previous file with comments | « no previous file | Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698