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

Unified Diff: cc/test/fake_proxy.h

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_proxy.h
diff --git a/cc/test/fake_proxy.h b/cc/test/fake_proxy.h
index 21324c1d40ef04fefd3d140397206a5caf85f195..4fd5365173dbd03e312dd420643e4e24c5046268 100644
--- a/cc/test/fake_proxy.h
+++ b/cc/test/fake_proxy.h
@@ -13,11 +13,11 @@ namespace cc {
class FakeProxy : public Proxy {
public:
- FakeProxy() : Proxy(NULL, NULL), layer_tree_host_(NULL) {}
+ FakeProxy() : Proxy(nullptr, nullptr), layer_tree_host_(nullptr) {}
explicit FakeProxy(
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner)
- : Proxy(main_task_runner, impl_task_runner), layer_tree_host_(NULL) {}
+ : Proxy(main_task_runner, impl_task_runner), layer_tree_host_(nullptr) {}
void SetLayerTreeHost(LayerTreeHost* host);

Powered by Google App Engine
This is Rietveld 408576698