| Index: cc/resources/tile_manager_perftest.cc
|
| diff --git a/cc/resources/tile_manager_perftest.cc b/cc/resources/tile_manager_perftest.cc
|
| index ae95212068d2d3f703529fcf6c25e6564c789f14..47088d7032ba6b70cabb423696076b1cfa3532f6 100644
|
| --- a/cc/resources/tile_manager_perftest.cc
|
| +++ b/cc/resources/tile_manager_perftest.cc
|
| @@ -221,7 +221,7 @@ class TileManagerPerfTest : public testing::Test {
|
| priorities[priority_count], RasterTilePriorityQueue::Type::ALL));
|
| while (count--) {
|
| ASSERT_FALSE(queue->IsEmpty());
|
| - ASSERT_TRUE(queue->Top() != NULL);
|
| + ASSERT_TRUE(queue->Top().tile());
|
| queue->Pop();
|
| }
|
| priority_count = (priority_count + 1) % arraysize(priorities);
|
| @@ -296,7 +296,7 @@ class TileManagerPerfTest : public testing::Test {
|
| host_impl_.BuildEvictionQueue(priorities[priority_count]));
|
| while (count--) {
|
| ASSERT_FALSE(queue->IsEmpty());
|
| - ASSERT_TRUE(queue->Top() != NULL);
|
| + ASSERT_TRUE(queue->Top().tile());
|
| queue->Pop();
|
| }
|
| priority_count = (priority_count + 1) % arraysize(priorities);
|
|
|