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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.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/StyleBuilderCustom.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
index a77ce4de745141c651e0429a81ad3e714d78bb9c..2dc1e236ba8f8ff053d2cfb0d27217fcf41ce99c 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
@@ -326,7 +326,7 @@ void StyleBuilderFunctions::applyValueCSSPropertyResize(
EResize r = RESIZE_NONE;
if (identifierValue.getValueID() == CSSValueAuto) {
if (Settings* settings = state.document().settings())
- r = settings->textAreasAreResizable() ? RESIZE_BOTH : RESIZE_NONE;
+ r = settings->GetTextAreasAreResizable() ? RESIZE_BOTH : RESIZE_NONE;
} else {
r = identifierValue.convertTo<EResize>();
}

Powered by Google App Engine
This is Rietveld 408576698