Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Unified Diff: components/printing/renderer/print_web_view_helper_pdf_win.cc

Issue 905573003: Style fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698