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

Unified Diff: cc/resources/resource_pool.cc

Issue 1423073005: fixup! cc: Keep most recently used resources at the front of resource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@resource_evict
Patch Set: Created 5 years, 1 month 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/resources/resource_pool.cc
diff --git a/cc/resources/resource_pool.cc b/cc/resources/resource_pool.cc
index 402ebbf1b9204d566f0d39d1633c8d2dad70b1a1..aa2ddc5de0f172f0a29de09378950b9ffdb897ea 100644
--- a/cc/resources/resource_pool.cc
+++ b/cc/resources/resource_pool.cc
@@ -92,7 +92,7 @@ ResourcePool::~ResourcePool() {
Resource* ResourcePool::AcquireResource(const gfx::Size& size,
ResourceFormat format) {
// Finding resources in |unused_resources_| from MRU to LRU direction, touches
- // LRU resources only if needed, which inreases possibility of expiring more
+ // LRU resources only if needed, which increases possibility of expiring more
// LRU resources within kResourceExpirationDelayMs.
for (ResourceDeque::iterator it = unused_resources_.begin();
it != unused_resources_.end(); ++it) {
« 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