| Index: content/common/gpu/client/gpu_memory_buffer_factory_host.cc
|
| diff --git a/content/common/gpu/client/gpu_memory_buffer_factory_host.cc b/content/common/gpu/client/gpu_memory_buffer_factory_host.cc
|
| index ea7a321d1c5fcf9eb1b4ecc30e630ce83416eb16..ff393b91c0c60a01794cfccc58556bf07a04b29a 100644
|
| --- a/content/common/gpu/client/gpu_memory_buffer_factory_host.cc
|
| +++ b/content/common/gpu/client/gpu_memory_buffer_factory_host.cc
|
| @@ -8,7 +8,7 @@
|
|
|
| namespace content {
|
| namespace {
|
| -GpuMemoryBufferFactoryHost* instance = NULL;
|
| +GpuMemoryBufferFactoryHost* instance = nullptr;
|
| }
|
|
|
| // static
|
| @@ -17,11 +17,11 @@ GpuMemoryBufferFactoryHost* GpuMemoryBufferFactoryHost::GetInstance() {
|
| }
|
|
|
| GpuMemoryBufferFactoryHost::GpuMemoryBufferFactoryHost() {
|
| - DCHECK(instance == NULL);
|
| + DCHECK(instance == nullptr);
|
| instance = this;
|
| }
|
|
|
| GpuMemoryBufferFactoryHost::~GpuMemoryBufferFactoryHost() {
|
| - instance = NULL;
|
| + instance = nullptr;
|
| }
|
| }
|
|
|