| 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 29d818889561ef82f72930b0116ab388a4809011..f89554a633460e68e0521f2cc41600ff1725608f 100644
|
| --- a/third_party/WebKit/Source/modules/mediasource/TrackDefault.cpp
|
| +++ b/third_party/WebKit/Source/modules/mediasource/TrackDefault.cpp
|
| @@ -14,19 +14,19 @@ namespace blink {
|
|
|
| static const AtomicString& audioKeyword()
|
| {
|
| - DEFINE_STATIC_LOCAL(const AtomicString, audio, ("audio", AtomicString::ConstructFromLiteral));
|
| + DEFINE_STATIC_LOCAL(const AtomicString, audio, ("audio"));
|
| return audio;
|
| }
|
|
|
| static const AtomicString& videoKeyword()
|
| {
|
| - DEFINE_STATIC_LOCAL(const AtomicString, video, ("video", AtomicString::ConstructFromLiteral));
|
| + DEFINE_STATIC_LOCAL(const AtomicString, video, ("video"));
|
| return video;
|
| }
|
|
|
| static const AtomicString& textKeyword()
|
| {
|
| - DEFINE_STATIC_LOCAL(const AtomicString, text, ("text", AtomicString::ConstructFromLiteral));
|
| + DEFINE_STATIC_LOCAL(const AtomicString, text, ("text"));
|
| return text;
|
| }
|
|
|
|
|