| Index: third_party/WebKit/Source/wtf/HashSet.h
|
| diff --git a/third_party/WebKit/Source/wtf/HashSet.h b/third_party/WebKit/Source/wtf/HashSet.h
|
| index f1af65b68c09b025e8dfff98b4973ce332cf6ea7..b69f64513bd58ba20680e327234fdbe8889af809 100644
|
| --- a/third_party/WebKit/Source/wtf/HashSet.h
|
| +++ b/third_party/WebKit/Source/wtf/HashSet.h
|
| @@ -122,7 +122,7 @@ class HashSet {
|
| template <typename HashTranslator, typename T>
|
| AddResult addWithTranslator(T&&);
|
|
|
| - void remove(ValuePeekInType);
|
| + void erase(ValuePeekInType);
|
| void remove(iterator);
|
| void clear();
|
| template <typename Collection>
|
| @@ -280,7 +280,7 @@ inline void HashSet<T, U, V, W>::remove(iterator it) {
|
| }
|
|
|
| template <typename T, typename U, typename V, typename W>
|
| -inline void HashSet<T, U, V, W>::remove(ValuePeekInType value) {
|
| +inline void HashSet<T, U, V, W>::erase(ValuePeekInType value) {
|
| remove(find(value));
|
| }
|
|
|
|
|