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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.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/css/resolver/StyleResolver.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
index 50a997b857a113374b95b0a31e34add8464a5ba4..e4258c9a9531ad9a73dee662ff38401fcb671c25 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
@@ -1373,13 +1373,13 @@ static bool shouldIgnoreTextTrackAuthorStyle(const Document& document) {
return false;
// Ignore author specified settings for text tracks when any of the user
// settings are present.
- if (!settings->textTrackBackgroundColor().isEmpty() ||
- !settings->textTrackFontFamily().isEmpty() ||
- !settings->textTrackFontStyle().isEmpty() ||
- !settings->textTrackFontVariant().isEmpty() ||
- !settings->textTrackTextColor().isEmpty() ||
- !settings->textTrackTextShadow().isEmpty() ||
- !settings->textTrackTextSize().isEmpty())
+ if (!settings->GetTextTrackBackgroundColor().isEmpty() ||
+ !settings->GetTextTrackFontFamily().isEmpty() ||
+ !settings->GetTextTrackFontStyle().isEmpty() ||
+ !settings->GetTextTrackFontVariant().isEmpty() ||
+ !settings->GetTextTrackTextColor().isEmpty() ||
+ !settings->GetTextTrackTextShadow().isEmpty() ||
+ !settings->GetTextTrackTextSize().isEmpty())
return true;
return false;
}

Powered by Google App Engine
This is Rietveld 408576698