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

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

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.cpp
diff --git a/third_party/WebKit/Source/modules/mediasource/TrackDefault.cpp b/third_party/WebKit/Source/modules/mediasource/TrackDefault.cpp
index 2b629d698896fd5bbb2c504cc608a9ad1c6c3a6f..674f6472eba128f7571bbfe005b91b99151b2073 100644
--- a/third_party/WebKit/Source/modules/mediasource/TrackDefault.cpp
+++ b/third_party/WebKit/Source/modules/mediasource/TrackDefault.cpp
@@ -11,19 +11,19 @@
namespace blink {
-static const AtomicString& audioKeyword()
+const AtomicString& TrackDefault::audioKeyword()
{
DEFINE_STATIC_LOCAL(const AtomicString, audio, ("audio"));
return audio;
}
-static const AtomicString& videoKeyword()
+const AtomicString& TrackDefault::videoKeyword()
{
DEFINE_STATIC_LOCAL(const AtomicString, video, ("video"));
return video;
}
-static const AtomicString& textKeyword()
+const AtomicString& TrackDefault::textKeyword()
{
DEFINE_STATIC_LOCAL(const AtomicString, text, ("text"));
return text;

Powered by Google App Engine
This is Rietveld 408576698