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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.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/svg/graphics/SVGImage.cpp
diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp b/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
index f13a6b7f75edb1c7cd7f30f544c103ddadaa6e52..eebb78c4e9761826b5a3863114c7d3eded633e60 100644
--- a/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
+++ b/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
@@ -584,12 +584,14 @@ Image::SizeAvailability SVGImage::dataChanged(bool allDataReceived) {
(*Page::ordinaryPages().begin())->settings();
page->settings().genericFontFamilySettings() =
defaultSettings.genericFontFamilySettings();
- page->settings().setMinimumFontSize(defaultSettings.minimumFontSize());
+ page->settings().setMinimumFontSize(
+ defaultSettings.getMinimumFontSize());
page->settings().setMinimumLogicalFontSize(
- defaultSettings.minimumLogicalFontSize());
- page->settings().setDefaultFontSize(defaultSettings.defaultFontSize());
+ defaultSettings.getMinimumLogicalFontSize());
+ page->settings().setDefaultFontSize(
+ defaultSettings.getDefaultFontSize());
page->settings().setDefaultFixedFontSize(
- defaultSettings.defaultFixedFontSize());
+ defaultSettings.getDefaultFixedFontSize());
}
}

Powered by Google App Engine
This is Rietveld 408576698