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

Unified Diff: third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.cpp

Issue 2391943002: Rewrap comments to 80 columns in platform/graphics/{compositing,cpu,gpu,skia}/. (Closed)
Patch Set: One space Created 4 years, 2 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/skia/ImagePixelLocker.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.cpp b/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.cpp
index 62808446a61219176f4e0113bd4f9eb8019f3222..0250cbf9621d50c0633ccfebbe664281db4e56ed 100644
--- a/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.cpp
+++ b/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.cpp
@@ -31,8 +31,8 @@ ImagePixelLocker::ImagePixelLocker(sk_sp<const SkImage> image,
SkColorType colorType)
: m_image(std::move(image)) {
// If the image has in-RAM pixels and their format matches, use them directly.
- // TODO(fmalita): All current clients expect packed pixel rows. Maybe we could update them
- // to support arbitrary rowBytes, and relax the check below.
+ // TODO(fmalita): All current clients expect packed pixel rows. Maybe we
+ // could update them to support arbitrary rowBytes, and relax the check below.
SkPixmap pixmap;
m_image->peekPixels(&pixmap);
m_pixels = pixmap.addr();

Powered by Google App Engine
This is Rietveld 408576698