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

Unified Diff: cc/test/fake_output_surface.cc

Issue 634243003: [C++11 Allowed Features] Declares a type-safe null pointer converting from NULL to nullptr [part-4] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Formating fix. Created 6 years, 2 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
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) {

Powered by Google App Engine
This is Rietveld 408576698