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

Unified Diff: third_party/WebKit/Source/web/InspectorOverlay.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/web/InspectorOverlay.cpp
diff --git a/third_party/WebKit/Source/web/InspectorOverlay.cpp b/third_party/WebKit/Source/web/InspectorOverlay.cpp
index 70c547c4cb979ae1eac80d91e3de373128f08424..938e6c6a64f1dbe4ae4685179a00c7dbfb03fc11 100644
--- a/third_party/WebKit/Source/web/InspectorOverlay.cpp
+++ b/third_party/WebKit/Source/web/InspectorOverlay.cpp
@@ -531,8 +531,9 @@ Page* InspectorOverlay::overlayPage() {
settings.genericFontFamilySettings().fantasy());
overlaySettings.genericFontFamilySettings().updatePictograph(
settings.genericFontFamilySettings().pictograph());
- overlaySettings.setMinimumFontSize(settings.minimumFontSize());
- overlaySettings.setMinimumLogicalFontSize(settings.minimumLogicalFontSize());
+ overlaySettings.setMinimumFontSize(settings.GetMinimumFontSize());
+ overlaySettings.setMinimumLogicalFontSize(
+ settings.GetMinimumLogicalFontSize());
overlaySettings.setScriptEnabled(true);
overlaySettings.setPluginsEnabled(false);
overlaySettings.setLoadsImagesAutomatically(true);

Powered by Google App Engine
This is Rietveld 408576698