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

Unified Diff: tests/XfermodeTest.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 | « tests/Writer32Test.cpp ('k') | tests/YUVCacheTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/XfermodeTest.cpp
diff --git a/tests/XfermodeTest.cpp b/tests/XfermodeTest.cpp
index 34f5233fcf4e5dda849f2a14649277aedaf195ef..294d63db59adb490f4045d2752f1660c467bd8ce 100644
--- a/tests/XfermodeTest.cpp
+++ b/tests/XfermodeTest.cpp
@@ -35,7 +35,7 @@ static void test_asMode(skiatest::Reporter* reporter) {
}
static void test_IsMode(skiatest::Reporter* reporter) {
- REPORTER_ASSERT(reporter, SkXfermode::IsMode(NULL,
+ REPORTER_ASSERT(reporter, SkXfermode::IsMode(nullptr,
SkXfermode::kSrcOver_Mode));
for (int i = 0; i <= SkXfermode::kLastMode; ++i) {
@@ -46,7 +46,7 @@ static void test_IsMode(skiatest::Reporter* reporter) {
SkSafeUnref(xfer);
if (SkXfermode::kSrcOver_Mode != mode) {
- REPORTER_ASSERT(reporter, !SkXfermode::IsMode(NULL, mode));
+ REPORTER_ASSERT(reporter, !SkXfermode::IsMode(nullptr, mode));
}
}
}
« no previous file with comments | « tests/Writer32Test.cpp ('k') | tests/YUVCacheTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698