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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/Path2D.h

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/modules/canvas2d/Path2D.h
diff --git a/third_party/WebKit/Source/modules/canvas2d/Path2D.h b/third_party/WebKit/Source/modules/canvas2d/Path2D.h
index 1cc77cce218da397b3354fdd088553366644393d..57dbfba4294501f74a1fe9bcec4617fbf1afb4a6 100644
--- a/third_party/WebKit/Source/modules/canvas2d/Path2D.h
+++ b/third_party/WebKit/Source/modules/canvas2d/Path2D.h
@@ -55,8 +55,9 @@ class MODULES_EXPORT Path2D final : public GarbageCollectedFinalized<Path2D>,
void addPath(Path2D* path, SVGMatrixTearOff* transform) {
Path src = path->path();
- m_path.addPath(src, transform ? transform->value()
- : AffineTransform(1, 0, 0, 1, 0, 0));
+ m_path.addPath(
+ src,
+ transform ? transform->value() : AffineTransform(1, 0, 0, 1, 0, 0));
}
~Path2D() override {}

Powered by Google App Engine
This is Rietveld 408576698