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

Unified Diff: samplecode/SampleCull.cpp

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 4 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
« no previous file with comments | « samplecode/SampleConcavePaths.cpp ('k') | samplecode/SampleDash.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samplecode/SampleCull.cpp
diff --git a/samplecode/SampleCull.cpp b/samplecode/SampleCull.cpp
index afc41849cb8207da632f884ed61876be15498108..011b22f9e79b07add8dd6798dc3f8ca284c940bb 100644
--- a/samplecode/SampleCull.cpp
+++ b/samplecode/SampleCull.cpp
@@ -161,7 +161,7 @@ protected:
paint.setStrokeWidth(SkIntToScalar(2));
// paint.setPathEffect(new SkCornerPathEffect(SkIntToScalar(30)))->unref();
canvas->drawPath(fPath, paint);
-// paint.setPathEffect(NULL);
+// paint.setPathEffect(nullptr);
#endif
SkPath tmp;
@@ -179,7 +179,7 @@ protected:
paint.setStrokeJoin(SkPaint::kRound_Join);
canvas->drawPath(tmp, paint);
- this->inval(NULL);
+ this->inval(nullptr);
}
private:
« no previous file with comments | « samplecode/SampleConcavePaths.cpp ('k') | samplecode/SampleDash.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698