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

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: rebase Created 4 years, 8 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 f330b23eae8d027d58165c144ac0fb7085b7c7d1..2d5f935522e0754b48ce602bdc31137f75a52624 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