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 8c398e58257e2c61f21de1ae41234a22dcba6a21..c3735e9de3dea61026237f229babb370be8a90c0 100644 |
--- a/third_party/WebKit/Source/wtf/HashTable.h |
+++ b/third_party/WebKit/Source/wtf/HashTable.h |
@@ -142,14 +142,14 @@ class HashTableStatsPtr<Allocator, false> final { |
public: |
static std::unique_ptr<HashTableStats> create() { |
- return wrapUnique(new HashTableStats); |
+ return WTF::wrapUnique(new HashTableStats); |
} |
static std::unique_ptr<HashTableStats> copy( |
const std::unique_ptr<HashTableStats>& other) { |
if (!other) |
return nullptr; |
- return wrapUnique(new HashTableStats(*other)); |
+ return WTF::wrapUnique(new HashTableStats(*other)); |
} |
static void swap(std::unique_ptr<HashTableStats>& stats, |