aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/skia_test.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-08-27 07:41:13 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-27 07:41:16 -0700
commit96fcdcc219d2a0d3579719b84b28bede76efba64 (patch)
tree0ec5ea0193d8292df8bf5ed9dd8498a5eb5763dd /tests/skia_test.cpp
parent435af2f736c85c3274a0c6760a3523810750d237 (diff)
Style Change: NULL->nullptr
Diffstat (limited to 'tests/skia_test.cpp')
-rw-r--r--tests/skia_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/skia_test.cpp b/tests/skia_test.cpp
index fbd35d081b..dc5ae97c3f 100644
--- a/tests/skia_test.cpp
+++ b/tests/skia_test.cpp
@@ -76,7 +76,7 @@ class SkTestRunnable : public SkRunnable {
public:
SkTestRunnable(const Test& test,
Status* status,
- GrContextFactory* grContextFactory = NULL)
+ GrContextFactory* grContextFactory = nullptr)
: fTest(test), fStatus(status), fGrContextFactory(grContextFactory) {}
virtual void run() {
@@ -193,7 +193,7 @@ int test_main() {
}
}
- GrContextFactory* grContextFactoryPtr = NULL;
+ GrContextFactory* grContextFactoryPtr = nullptr;
#if SK_SUPPORT_GPU
// Give GPU tests a context factory if that makes sense on this machine.
GrContextFactory grContextFactory;