summaryrefslogtreecommitdiffstats
path: root/mojo/embedder/simple_platform_shared_buffer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/embedder/simple_platform_shared_buffer.cc')
-rw-r--r--mojo/embedder/simple_platform_shared_buffer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/embedder/simple_platform_shared_buffer.cc b/mojo/embedder/simple_platform_shared_buffer.cc
index 278de00..fc5ee8c 100644
--- a/mojo/embedder/simple_platform_shared_buffer.cc
+++ b/mojo/embedder/simple_platform_shared_buffer.cc
@@ -20,7 +20,7 @@ SimplePlatformSharedBuffer* SimplePlatformSharedBuffer::Create(
// We can't just delete it directly, due to the "in destructor" (debug)
// check.
scoped_refptr<SimplePlatformSharedBuffer> deleter(rv);
- return NULL;
+ return nullptr;
}
return rv;
@@ -38,7 +38,7 @@ SimplePlatformSharedBuffer::CreateFromPlatformHandle(
// We can't just delete it directly, due to the "in destructor" (debug)
// check.
scoped_refptr<SimplePlatformSharedBuffer> deleter(rv);
- return NULL;
+ return nullptr;
}
return rv;