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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.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/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index ec4269cb7867457f1600ed5390b41d30fdcb0db3..81ae376f4d72e519e1c617de9f98f5dd26b6ff24 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -2472,7 +2472,7 @@ RespectImageOrientationEnum LayoutObject::shouldRespectImageOrientation(
return DoNotRespectImageOrientation;
if (layoutObject->document().settings() &&
- layoutObject->document().settings()->shouldRespectImageOrientation())
+ layoutObject->document().settings()->getShouldRespectImageOrientation())
return RespectImageOrientation;
if (layoutObject->style() &&
@@ -3126,7 +3126,7 @@ bool LayoutObject::willRenderImage() {
bool LayoutObject::getImageAnimationPolicy(ImageAnimationPolicy& policy) {
if (!document().settings())
return false;
- policy = document().settings()->imageAnimationPolicy();
+ policy = document().settings()->getImageAnimationPolicy();
return true;
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/ImageQualityController.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698