Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5203)

Unified Diff: cc/tile_manager.cc

Issue 11761020: cc: Fix typo causing low-res tiles not to be prioritized correctly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tile_manager.cc
diff --git a/cc/tile_manager.cc b/cc/tile_manager.cc
index b9c0533c7725b32b75b8177114306f8dfd17ad50..70544295f2ed2c0db5b8bc5fcf5611895302ff53 100644
--- a/cc/tile_manager.cc
+++ b/cc/tile_manager.cc
@@ -267,7 +267,7 @@ public:
return ams.raster_bin < bms.raster_bin;
if (ams.resolution != bms.resolution)
- return ams.resolution < ams.resolution;
+ return ams.resolution < bms.resolution;
return
ams.time_to_needed_in_seconds <
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698