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

Unified Diff: third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.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/modules/imagebitmap/ImageBitmapRenderingContext.cpp
diff --git a/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp b/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp
index e3a7c54952c2a22402efe539f4cd336283503f87..8223480f368bfab366e19a9a645ceed349a61f3f 100644
--- a/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp
+++ b/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp
@@ -75,9 +75,9 @@ bool ImageBitmapRenderingContext::paint(GraphicsContext& gc, const IntRect& r) {
DCHECK(
!m_image->imageForCurrentFrame(ColorBehavior::transformToGlobalTarget())
->isTextureBacked());
- gc.drawImage(m_image.get(), r, nullptr, creationAttributes().alpha()
- ? SkBlendMode::kSrcOver
- : SkBlendMode::kSrc);
+ gc.drawImage(
+ m_image.get(), r, nullptr,
+ creationAttributes().alpha() ? SkBlendMode::kSrcOver : SkBlendMode::kSrc);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698