| 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 28c2745c393f2fed9a8817f584a34491ba08d006..11e13bcc2cc1818a168122b516ee8563a0e8bb12 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1330,9 +1330,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, WebDoubleSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft)
|
| {
|
| - IntSize size = pageSize;
|
| + DoubleSize size = pageSize;
|
| frame()->document()->pageSizeAndMarginsInPixels(pageIndex, size, marginTop, marginRight, marginBottom, marginLeft);
|
| pageSize = size;
|
| }
|
|
|