Index: chrome/renderer/print_web_view_helper_mac.mm |
diff --git a/chrome/renderer/print_web_view_helper_mac.mm b/chrome/renderer/print_web_view_helper_mac.mm |
index b94221ef4ad8ddc2ddc474300d48396332dde7cd..16311d4b42d45815ec8d12e02270330199badf13 100644 |
--- a/chrome/renderer/print_web_view_helper_mac.mm |
+++ b/chrome/renderer/print_web_view_helper_mac.mm |
@@ -69,10 +69,10 @@ void PrintWebViewHelper::PrintPage(const ViewMsg_PrintPage_Params& params, |
base::SharedMemory shared_buf; |
page_params.page_size = gfx::Size( |
- static_cast<int>(content_width_in_points |
- + margin_left_in_points + margin_right_in_points), |
- static_cast<int>(content_height_in_points |
- + margin_top_in_points + margin_bottom_in_points)); |
+ static_cast<int>(content_width_in_points + |
+ margin_left_in_points + margin_right_in_points), |
+ static_cast<int>(content_height_in_points + |
+ margin_top_in_points + margin_bottom_in_points)); |
page_params.content_area = gfx::Rect( |
static_cast<int>(margin_left_in_points), |
static_cast<int>(margin_top_in_points), |