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

Unified Diff: third_party/WebKit/Source/core/paint/FrameSetPainter.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 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: third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp b/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
index fc78d7a2127578e508d297f842a088a4df8f6fe2..c27ff62f5498e000da8116bf88736d4f16d09ba8 100644
--- a/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
@@ -34,10 +34,11 @@ void FrameSetPainter::paintColumnBorder(const PaintInfo& paintInfo,
// Fill first.
GraphicsContext& context = paintInfo.context;
- context.fillRect(borderRect, m_layoutFrameSet.frameSet()->hasBorderColor()
- ? m_layoutFrameSet.resolveColor(
- CSSPropertyBorderLeftColor)
- : borderFillColor());
+ context.fillRect(
+ borderRect,
+ m_layoutFrameSet.frameSet()->hasBorderColor()
+ ? m_layoutFrameSet.resolveColor(CSSPropertyBorderLeftColor)
+ : borderFillColor());
// Now stroke the edges but only if we have enough room to paint both edges
// with a little bit of the fill color showing through.
@@ -58,10 +59,11 @@ void FrameSetPainter::paintRowBorder(const PaintInfo& paintInfo,
// Fill first.
GraphicsContext& context = paintInfo.context;
- context.fillRect(borderRect, m_layoutFrameSet.frameSet()->hasBorderColor()
- ? m_layoutFrameSet.resolveColor(
- CSSPropertyBorderLeftColor)
- : borderFillColor());
+ context.fillRect(
+ borderRect,
+ m_layoutFrameSet.frameSet()->hasBorderColor()
+ ? m_layoutFrameSet.resolveColor(CSSPropertyBorderLeftColor)
+ : borderFillColor());
// Now stroke the edges but only if we have enough room to paint both edges
// with a little bit of the fill color showing through.

Powered by Google App Engine
This is Rietveld 408576698