| Index: cc/render_pass.cc
|
| diff --git a/cc/render_pass.cc b/cc/render_pass.cc
|
| index b3c1ede9fb5c2c02db50ec547720f7ea6a59e300..24f1cd51b0e3fb0b044385ab93c82f2109cf560d 100644
|
| --- a/cc/render_pass.cc
|
| +++ b/cc/render_pass.cc
|
| @@ -44,8 +44,8 @@ void RenderPass::SetNew(Id id,
|
| this->damage_rect = damage_rect;
|
| this->transform_to_root_target = transform_to_root_target;
|
|
|
| - DCHECK(quad_list.isEmpty());
|
| - DCHECK(shared_quad_state_list.isEmpty());
|
| + DCHECK(quad_list.empty());
|
| + DCHECK(shared_quad_state_list.empty());
|
| }
|
|
|
| void RenderPass::SetAll(Id id,
|
| @@ -65,8 +65,8 @@ void RenderPass::SetAll(Id id,
|
| this->has_occlusion_from_outside_target_surface =
|
| has_occlusion_from_outside_target_surface;
|
|
|
| - DCHECK(quad_list.isEmpty());
|
| - DCHECK(shared_quad_state_list.isEmpty());
|
| + DCHECK(quad_list.empty());
|
| + DCHECK(shared_quad_state_list.empty());
|
| }
|
|
|
| } // namespace cc
|
|
|