| Index: cc/trees/layer_tree_host_unittest_picture.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest_picture.cc b/cc/trees/layer_tree_host_unittest_picture.cc
|
| index a79d0750f3dfa81ba1185b1a9868e52d47a8e590..db783275e74f8ab50782eca7fd512c0f6787c0de 100644
|
| --- a/cc/trees/layer_tree_host_unittest_picture.cc
|
| +++ b/cc/trees/layer_tree_host_unittest_picture.cc
|
| @@ -66,13 +66,13 @@ class LayerTreeHostPictureTestTwinLayer
|
|
|
| if (!active_root_impl) {
|
| EXPECT_EQ(0, activates_);
|
| - EXPECT_EQ(NULL, pending_picture_impl->twin_layer());
|
| + EXPECT_EQ(nullptr, pending_picture_impl->twin_layer());
|
| return;
|
| }
|
|
|
| if (active_root_impl->children().empty()) {
|
| EXPECT_EQ(3, activates_);
|
| - EXPECT_EQ(NULL, pending_picture_impl->twin_layer());
|
| + EXPECT_EQ(nullptr, pending_picture_impl->twin_layer());
|
| return;
|
| }
|
|
|
| @@ -97,7 +97,7 @@ class LayerTreeHostPictureTestTwinLayer
|
| FakePictureLayerImpl* active_picture_impl =
|
| static_cast<FakePictureLayerImpl*>(active_root_impl->children()[0]);
|
|
|
| - EXPECT_EQ(NULL, active_picture_impl->twin_layer());
|
| + EXPECT_EQ(nullptr, active_picture_impl->twin_layer());
|
| }
|
|
|
| ++activates_;
|
|
|