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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.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/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index 0c01284265ff25a16cce08274ab9fd881c03666b..7ee087a57b332a0310feb18d55fbdee03a5792f5 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -2479,7 +2479,7 @@ RespectImageOrientationEnum LayoutObject::shouldRespectImageOrientation(
return DoNotRespectImageOrientation;
if (layoutObject->document().settings() &&
- layoutObject->document().settings()->shouldRespectImageOrientation())
+ layoutObject->document().settings()->GetShouldRespectImageOrientation())
return RespectImageOrientation;
if (layoutObject->style() &&
@@ -3133,7 +3133,7 @@ bool LayoutObject::willRenderImage() {
bool LayoutObject::getImageAnimationPolicy(ImageAnimationPolicy& policy) {
if (!document().settings())
return false;
- policy = document().settings()->imageAnimationPolicy();
+ policy = document().settings()->GetImageAnimationPolicy();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698