Index: cc/test/fake_output_surface.cc |
diff --git a/cc/test/fake_output_surface.cc b/cc/test/fake_output_surface.cc |
index 29680de50e0d115fa49e20059d349c905e3aaa7b..d2854511304799a0b961e665f8058c3085b7867d 100644 |
--- a/cc/test/fake_output_surface.cc |
+++ b/cc/test/fake_output_surface.cc |
@@ -18,7 +18,7 @@ FakeOutputSurface::FakeOutputSurface( |
scoped_refptr<ContextProvider> context_provider, |
bool delegated_rendering) |
: OutputSurface(context_provider), |
- client_(NULL), |
+ client_(nullptr), |
num_sent_frames_(0), |
needs_begin_frame_(false), |
has_external_stencil_test_(false), |
@@ -33,7 +33,7 @@ FakeOutputSurface::FakeOutputSurface( |
scoped_ptr<SoftwareOutputDevice> software_device, |
bool delegated_rendering) |
: OutputSurface(software_device.Pass()), |
- client_(NULL), |
+ client_(nullptr), |
num_sent_frames_(0), |
has_external_stencil_test_(false), |
fake_weak_ptr_factory_(this) { |
@@ -48,7 +48,7 @@ FakeOutputSurface::FakeOutputSurface( |
scoped_ptr<SoftwareOutputDevice> software_device, |
bool delegated_rendering) |
: OutputSurface(context_provider, software_device.Pass()), |
- client_(NULL), |
+ client_(nullptr), |
num_sent_frames_(0), |
has_external_stencil_test_(false), |
fake_weak_ptr_factory_(this) { |