| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index 232f3c593beb414be2093ec2270a1dda1909f84b..2119fa1f6f197f558aef057f23dc8135be7a7931 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1326,9 +1326,9 @@ bool WebLocalFrameImpl::isPageBoxVisible(int pageIndex)
|
| return frame()->document()->isPageBoxVisible(pageIndex);
|
| }
|
|
|
| -void WebLocalFrameImpl::pageSizeAndMarginsInPixels(int pageIndex, WebSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft)
|
| +void WebLocalFrameImpl::pageSizeAndMarginsInPixels(int pageIndex, WebFloatSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft)
|
| {
|
| - IntSize size = pageSize;
|
| + FloatSize size = pageSize;
|
| frame()->document()->pageSizeAndMarginsInPixels(pageIndex, size, marginTop, marginRight, marginBottom, marginLeft);
|
| pageSize = size;
|
| }
|
|
|