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

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Capitalize the prefix. Created 4 years 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/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 {

Powered by Google App Engine
This is Rietveld 408576698