| Index: trunk/src/cc/resources/prioritized_resource.cc
|
| ===================================================================
|
| --- trunk/src/cc/resources/prioritized_resource.cc (revision 191370)
|
| +++ trunk/src/cc/resources/prioritized_resource.cc (working copy)
|
| @@ -165,8 +165,7 @@
|
| }
|
|
|
| void PrioritizedResource::Backing::UpdatePriority() {
|
| - DCHECK(!proxy() ||
|
| - (proxy()->IsImplThread() && proxy()->IsMainThreadBlocked()));
|
| + DCHECK(!proxy() || proxy()->IsImplThread() && proxy()->IsMainThreadBlocked());
|
| if (owner_) {
|
| priority_at_last_priority_update_ = owner_->request_priority();
|
| was_above_priority_cutoff_at_last_priority_update_ =
|
| @@ -178,8 +177,7 @@
|
| }
|
|
|
| void PrioritizedResource::Backing::UpdateInDrawingImplTree() {
|
| - DCHECK(!proxy() ||
|
| - (proxy()->IsImplThread() && proxy()->IsMainThreadBlocked()));
|
| + DCHECK(!proxy() || proxy()->IsImplThread() && proxy()->IsMainThreadBlocked());
|
| in_drawing_impl_tree_ = !!owner();
|
| if (!in_drawing_impl_tree_) {
|
| DCHECK_EQ(priority_at_last_priority_update_,
|
|
|