| Index: cc/resources/tile_manager_perftest.cc
|
| diff --git a/cc/resources/tile_manager_perftest.cc b/cc/resources/tile_manager_perftest.cc
|
| index 09136668e7794deb34cc9857692951599d755ae8..fd7cfe0e474c5748b6cd0faaf8ec3a83cac61c8e 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);
|
|
|