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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.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/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 89082f87a789930eec3f2d910a2acf1a88a7236e..af61d7da5af689332e9d831f5d4bae5b2415cdd2 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