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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsContextTest.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/GraphicsContextTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp
index 1451bacd7e70b34f969ef1e54ac98cb75e7a1377..84c0926907c0fcadf775a010cca7ebcaaf06c12b 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp
@@ -86,7 +86,8 @@ TEST(GraphicsContextTest, pictureRecording) {
context.fillRect(FloatRect(0, 0, 100, 100), opaque,
SkXfermode::kSrcOver_Mode);
picture = context.endRecording();
- // Make sure the opaque region was unaffected by the rect drawn during Picture recording.
+ // Make sure the opaque region was unaffected by the rect drawn during Picture
+ // recording.
EXPECT_OPAQUE_PIXELS_ONLY_IN_RECT(bitmap, IntRect(0, 0, 50, 50))
canvas.drawPicture(picture.get());
@@ -130,7 +131,8 @@ TEST(GraphicsContextTest, UnboundedDrawsAreClipped) {
// Clip to the left edge of the opaque area.
context.clip(IntRect(10, 10, 10, 40));
- // Draw a path that gets clipped. This should destroy the opaque area but only inside the clip.
+ // Draw a path that gets clipped. This should destroy the opaque area, but
+ // only inside the clip.
Path path;
path.moveTo(FloatPoint(10, 10));
path.addLineTo(FloatPoint(40, 40));

Powered by Google App Engine
This is Rietveld 408576698