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

Unified Diff: third_party/WebKit/Source/core/css/FontFace.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/FontFace.cpp
diff --git a/third_party/WebKit/Source/core/css/FontFace.cpp b/third_party/WebKit/Source/core/css/FontFace.cpp
index 154827984c93ccd7add8e6e6c651403a9550bb9c..48d333d179d5e5d27d089f354abb9caa8be2af32 100644
--- a/third_party/WebKit/Source/core/css/FontFace.cpp
+++ b/third_party/WebKit/Source/core/css/FontFace.cpp
@@ -586,7 +586,7 @@ void FontFace::initCSSFontFace(Document* document, const CSSValue* src) {
if (!item.isLocal()) {
const Settings* settings = document ? document->settings() : nullptr;
bool allowDownloading =
- settings && settings->downloadableBinaryFontsEnabled();
+ settings && settings->GetDownloadableBinaryFontsEnabled();
if (allowDownloading && item.isSupportedFormat() && document) {
FontResource* fetched = item.fetch(document);
if (fetched) {

Powered by Google App Engine
This is Rietveld 408576698