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