| Index: third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp b/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| index 83b18fb7f37e7de0f774225c01335d8f662a72aa..489c5c977fcb5f6d0a666a0eca93480a39a5e66f 100644
|
| --- a/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| +++ b/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| @@ -1113,19 +1113,19 @@ void VTTCue::applyUserOverrideCSSProperties() {
|
|
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox,
|
| CSSPropertyBackgroundColor,
|
| - settings->textTrackBackgroundColor());
|
| + settings->GetTextTrackBackgroundColor());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontFamily,
|
| - settings->textTrackFontFamily());
|
| + settings->GetTextTrackFontFamily());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontStyle,
|
| - settings->textTrackFontStyle());
|
| + settings->GetTextTrackFontStyle());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontVariant,
|
| - settings->textTrackFontVariant());
|
| + settings->GetTextTrackFontVariant());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyColor,
|
| - settings->textTrackTextColor());
|
| + settings->GetTextTrackTextColor());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyTextShadow,
|
| - settings->textTrackTextShadow());
|
| + settings->GetTextTrackTextShadow());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontSize,
|
| - settings->textTrackTextSize());
|
| + settings->GetTextTrackTextSize());
|
| }
|
|
|
| ExecutionContext* VTTCue::getExecutionContext() const {
|
|
|