| Index: cc/trees/layer_tree_host_common.cc
|
| diff --git a/cc/trees/layer_tree_host_common.cc b/cc/trees/layer_tree_host_common.cc
|
| index 40184b0de79d9eb738229a5679d21398ba965307..353d94f7a514e6c1d6f54470eb8dfe10eb981807 100644
|
| --- a/cc/trees/layer_tree_host_common.cc
|
| +++ b/cc/trees/layer_tree_host_common.cc
|
| @@ -415,8 +415,8 @@ void UpdateAccumulatedSurfaceState(
|
| current_target->render_surface()->draw_transform();
|
|
|
| // If we have unclipped descendants, the draw transform is a translation.
|
| - DCHECK_IMPLIES(current_target->num_unclipped_descendants(),
|
| - current_draw_transform.IsIdentityOrTranslation());
|
| + DCHECK(!current_target->num_unclipped_descendants() ||
|
| + current_draw_transform.IsIdentityOrTranslation());
|
|
|
| target_rect =
|
| MathUtil::MapEnclosingClippedRect(current_draw_transform, target_rect);
|
|
|