| Index: cc/layers/picture_layer.cc
|
| diff --git a/cc/layers/picture_layer.cc b/cc/layers/picture_layer.cc
|
| index 0b92ff4a9d8a432eecfe8b6fa7335a24a0ddcb4e..81ae0b12a0143056103aae72bc6452c007b566b7 100644
|
| --- a/cc/layers/picture_layer.cc
|
| +++ b/cc/layers/picture_layer.cc
|
| @@ -57,8 +57,8 @@
|
|
|
| // If update called, then recording source size must match bounds pushed to
|
| // impl layer.
|
| - DCHECK(update_source_frame_number_ != source_frame_number ||
|
| - impl_bounds == recording_source_bounds)
|
| + DCHECK_IMPLIES(update_source_frame_number_ == source_frame_number,
|
| + impl_bounds == recording_source_bounds)
|
| << " bounds " << impl_bounds.ToString() << " recording source "
|
| << recording_source_bounds.ToString();
|
|
|
|
|