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

Unified Diff: third_party/WebKit/Source/core/html/track/AudioTrack.h

Issue 1658033002: Add SourceBuffer implementations of Audio/VideoTracks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pass-media-tracks-to-blink
Patch Set: rebase Created 4 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: third_party/WebKit/Source/core/html/track/AudioTrack.h
diff --git a/third_party/WebKit/Source/core/html/track/AudioTrack.h b/third_party/WebKit/Source/core/html/track/AudioTrack.h
index 3df4d78d37db2d908d945edc47896a9ade3a7213..dc38644acd6c9514ca57931360766e82beb67fba 100644
--- a/third_party/WebKit/Source/core/html/track/AudioTrack.h
+++ b/third_party/WebKit/Source/core/html/track/AudioTrack.h
@@ -8,10 +8,11 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CoreExport.h"
#include "core/html/track/TrackBase.h"
+#include "platform/Supplementable.h"
namespace blink {
-class CORE_EXPORT AudioTrack final : public GarbageCollectedFinalized<AudioTrack>, public TrackBase, public ScriptWrappable {
+class CORE_EXPORT AudioTrack final : public GarbageCollectedFinalized<AudioTrack>, public TrackBase, public ScriptWrappable, public HeapSupplementable<AudioTrack> {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(AudioTrack);
public:

Powered by Google App Engine
This is Rietveld 408576698