Index: third_party/WebKit/Source/wtf/text/AtomicString.cpp |
diff --git a/third_party/WebKit/Source/wtf/text/AtomicString.cpp b/third_party/WebKit/Source/wtf/text/AtomicString.cpp |
index cad9b6d28735197ddeef0055a8c6cdef8b906826..120a153198cc3b237bb8c2a66b1ec891a7a26103 100644 |
--- a/third_party/WebKit/Source/wtf/text/AtomicString.cpp |
+++ b/third_party/WebKit/Source/wtf/text/AtomicString.cpp |
@@ -118,7 +118,7 @@ void AtomicString::reserveTableCapacity(size_t size) |
template<typename T, typename HashTranslator> |
static inline PassRefPtr<StringImpl> addToStringTable(const T& value) |
{ |
- HashSet<StringImpl*>::AddResult addResult = atomicStrings().add<HashTranslator>(value); |
+ HashSet<StringImpl*>::AddResult addResult = atomicStrings().addWithTranslator<HashTranslator>(value); |
// If the string is newly-translated, then we need to adopt it. |
// The boolean in the pair tells us if that is so. |