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

Unified Diff: third_party/WebKit/Source/modules/mediasource/TrackDefault.h

Issue 1678523003: Implement InitSegmentReceived algorithm in blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blink-sb-audiotrack
Patch Set: Don't check track ids in tests Created 4 years, 6 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/modules/mediasource/TrackDefault.h
diff --git a/third_party/WebKit/Source/modules/mediasource/TrackDefault.h b/third_party/WebKit/Source/modules/mediasource/TrackDefault.h
index ad64cc8cb70e5c145c211fe9fb0a1ca57bc37b76..a6aa83b665571b19773d1e49e8b5c50eb2980e80 100644
--- a/third_party/WebKit/Source/modules/mediasource/TrackDefault.h
+++ b/third_party/WebKit/Source/modules/mediasource/TrackDefault.h
@@ -15,6 +15,10 @@ class ExceptionState;
class TrackDefault final : public GarbageCollectedFinalized<TrackDefault>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
+ static const AtomicString& audioKeyword();
+ static const AtomicString& videoKeyword();
+ static const AtomicString& textKeyword();
+
static TrackDefault* create(const AtomicString& type, const String& language, const String& label, const Vector<String>& kinds, const String& byteStreamTrackID, ExceptionState&);
virtual ~TrackDefault();

Powered by Google App Engine
This is Rietveld 408576698