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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FEBlend.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/platform/graphics/filters/FEBlend.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp
index f7ebac74d56510500094f1185ec226d08ab23719..14b8c158037507b794284e06a8ddda81dc222bfd 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/FEBlend.cpp
@@ -65,9 +65,10 @@ TextStream& FEBlend::externalRepresentation(TextStream& ts, int indent) const {
writeIndent(ts, indent);
ts << "[feBlend";
FilterEffect::externalRepresentation(ts);
- ts << " mode=\"" << (m_mode == WebBlendModeNormal
- ? "normal"
- : compositeOperatorName(CompositeSourceOver, m_mode))
+ ts << " mode=\""
+ << (m_mode == WebBlendModeNormal
+ ? "normal"
+ : compositeOperatorName(CompositeSourceOver, m_mode))
<< "\"]\n";
inputEffect(0)->externalRepresentation(ts, indent + 1);
inputEffect(1)->externalRepresentation(ts, indent + 1);

Powered by Google App Engine
This is Rietveld 408576698