| Index: cc/resources/tile_priority.h
|
| diff --git a/cc/resources/tile_priority.h b/cc/resources/tile_priority.h
|
| index 6d5448949a1114662776b84e6f99c7dfed9f5793..31b8e5defb028ccfe2153f9248cba3bd9ee3292b 100644
|
| --- a/cc/resources/tile_priority.h
|
| +++ b/cc/resources/tile_priority.h
|
| @@ -97,9 +97,9 @@ struct CC_EXPORT TilePriority {
|
| }
|
|
|
| bool IsHigherPriorityThan(const TilePriority& other) const {
|
| - return priority_bin > other.priority_bin ||
|
| + return priority_bin < other.priority_bin ||
|
| (priority_bin == other.priority_bin &&
|
| - distance_to_visible > other.distance_to_visible);
|
| + distance_to_visible < other.distance_to_visible);
|
| }
|
|
|
| TileResolution resolution;
|
|
|