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

Unified Diff: third_party/WebKit/Source/platform/graphics/ImagePattern.cpp

Issue 2398453002: Rewrap comments to 80 columns in Source/platform/graphics/. (Closed)
Patch Set: Review feedback 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/ImagePattern.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp b/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp
index e92ac0aff6305a5ed266243f6485575d3985485f..c0afbbe0f9658ebc79c5e2c4e5201a2607d91e0a 100644
--- a/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp
+++ b/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp
@@ -22,7 +22,8 @@ ImagePattern::ImagePattern(PassRefPtr<Image> image, RepeatMode repeatMode)
: Pattern(repeatMode), m_tileImage(image->imageForCurrentFrame()) {
m_previousLocalMatrix.setIdentity();
if (m_tileImage) {
- // TODO(fmalita): mechanism to extract the actual SkImageInfo from an SkImage?
+ // TODO(fmalita): mechanism to extract the actual SkImageInfo from an
+ // SkImage?
const SkImageInfo info = SkImageInfo::MakeN32Premul(
m_tileImage->width() + (isRepeatX() ? 0 : 2),
m_tileImage->height() + (isRepeatY() ? 0 : 2));

Powered by Google App Engine
This is Rietveld 408576698