| Index: components/printing/renderer/print_web_view_helper_pdf_win.cc
|
| diff --git a/components/printing/renderer/print_web_view_helper_pdf_win.cc b/components/printing/renderer/print_web_view_helper_pdf_win.cc
|
| index 5809639905a8fcf5873064af38b72f11b30c4d9c..d4d1f35a6d5f0c4e29b875666107f570653c7d6f 100644
|
| --- a/components/printing/renderer/print_web_view_helper_pdf_win.cc
|
| +++ b/components/printing/renderer/print_web_view_helper_pdf_win.cc
|
| @@ -17,7 +17,6 @@
|
| #include "skia/ext/vector_canvas.h"
|
| #include "third_party/WebKit/public/web/WebLocalFrame.h"
|
|
|
| -
|
| namespace printing {
|
|
|
| using blink::WebFrame;
|
| @@ -160,10 +159,10 @@ void PrintWebViewHelper::PrintPageInternal(
|
| // Calculate the actual page size and content area in dpi.
|
| if (page_size_in_dpi) {
|
| *page_size_in_dpi =
|
| - gfx::Size(static_cast<int>(ConvertUnitDouble(
|
| - page_size.width(), kPointsPerInch, dpi)),
|
| - static_cast<int>(ConvertUnitDouble(
|
| - page_size.height(), kPointsPerInch, dpi)));
|
| + gfx::Size(static_cast<int>(ConvertUnitDouble(page_size.width(),
|
| + kPointsPerInch, dpi)),
|
| + static_cast<int>(ConvertUnitDouble(page_size.height(),
|
| + kPointsPerInch, dpi)));
|
| }
|
|
|
| if (content_area_in_dpi) {
|
|
|