| 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;
|
| }
|
|
|
|
|