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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.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/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 a3321a0f6ebbaf61b264a9a99382457a50c4f91c..524e0272b5afb5c77115896264feea0f1c7d2bac 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