| Index: third_party/WebKit/Source/platform/graphics/ImageDecodingStore.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.cpp b/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.cpp
|
| index 9b325db99fc9da005c464cef12cf40b4a9a0feca..369b15b22a62b54bc824e23b1fe0b97d292dc348 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.cpp
|
| @@ -247,7 +247,7 @@ void ImageDecodingStore::removeFromCacheInternal(
|
| // Remove entry from identifier map.
|
| typename V::iterator iter = identifierMap->find(cacheEntry->generator());
|
| ASSERT(iter != identifierMap->end());
|
| - iter->value.remove(cacheEntry->cacheKey());
|
| + iter->value.erase(cacheEntry->cacheKey());
|
| if (!iter->value.size())
|
| identifierMap->remove(iter);
|
|
|
|
|