| Index: third_party/WebKit/Source/wtf/HashTable.h
|
| diff --git a/third_party/WebKit/Source/wtf/HashTable.h b/third_party/WebKit/Source/wtf/HashTable.h
|
| index 069c16a0c2cc08cf1fbd4d95f6d908e231b653d7..dc707ef81fbc6f099030a89a3be1e43798a284c5 100644
|
| --- a/third_party/WebKit/Source/wtf/HashTable.h
|
| +++ b/third_party/WebKit/Source/wtf/HashTable.h
|
| @@ -2269,7 +2269,7 @@ inline void removeAll(Collection1& collection, const Collection2& toBeRemoved) {
|
| typedef typename Collection2::const_iterator CollectionIterator;
|
| CollectionIterator end(toBeRemoved.end());
|
| for (CollectionIterator it(toBeRemoved.begin()); it != end; ++it)
|
| - collection.remove(*it);
|
| + collection.erase(*it);
|
| }
|
|
|
| } // namespace WTF
|
|
|