Index: third_party/WebKit/Source/core/paint/EmbeddedObjectPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/EmbeddedObjectPainter.cpp b/third_party/WebKit/Source/core/paint/EmbeddedObjectPainter.cpp |
index dadad9ff4aed8aa37bee978357062cc51262502a..ba4c45a725e43c8d031bc108c6e702f9e604929a 100644 |
--- a/third_party/WebKit/Source/core/paint/EmbeddedObjectPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/EmbeddedObjectPainter.cpp |
@@ -72,8 +72,9 @@ void EmbeddedObjectPainter::paintReplaced(const PaintInfo& paintInfo, |
Path roundedBackgroundRect; |
FloatRect floatBackgroundRect(backgroundRect); |
roundedBackgroundRect.addRoundedRect( |
- floatBackgroundRect, FloatSize(replacementTextRoundedRectRadius, |
- replacementTextRoundedRectRadius)); |
+ floatBackgroundRect, |
+ FloatSize(replacementTextRoundedRectRadius, |
+ replacementTextRoundedRectRadius)); |
context.setFillColor( |
scaleAlpha(Color::white, replacementTextRoundedRectOpacity)); |
context.fillPath(roundedBackgroundRect); |