Index: third_party/WebKit/Source/core/page/PrintContext.cpp |
diff --git a/third_party/WebKit/Source/core/page/PrintContext.cpp b/third_party/WebKit/Source/core/page/PrintContext.cpp |
index e88fd38599e162a4fd98c01cee87e5ed16616fcb..ca3aff080a3592d3f0d3a9c8e1df286e97cc3c9a 100644 |
--- a/third_party/WebKit/Source/core/page/PrintContext.cpp |
+++ b/third_party/WebKit/Source/core/page/PrintContext.cpp |
@@ -173,8 +173,9 @@ void PrintContext::begin(float width, float height) { |
FloatSize originalPageSize = FloatSize(width, height); |
FloatSize minLayoutSize = m_frame->resizePageRectsKeepingRatio( |
- originalPageSize, FloatSize(width * printingMinimumShrinkFactor, |
- height * printingMinimumShrinkFactor)); |
+ originalPageSize, |
+ FloatSize(width * printingMinimumShrinkFactor, |
+ height * printingMinimumShrinkFactor)); |
// This changes layout, so callers need to make sure that they don't paint to |
// screen while in printing mode. |