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

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: Only get prefix and no capitalization. Created 3 years, 11 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/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 4fabe1f0f43acd411006b7eb965457374f1d5785..3091516f94cef4fd8681d7f0eaf79226eec659e9 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