Index: third_party/WebKit/Source/modules/indexeddb/IDBValue.cpp |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBValue.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBValue.cpp |
index 476fa418bff662531783efe695b1b067446e948a..6fa0d2bc91267c825ca1d809491915a7da89475f 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBValue.cpp |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBValue.cpp |
@@ -22,8 +22,8 @@ IDBValue::IDBValue(PassRefPtr<SharedBuffer> data, |
IDBKey* primaryKey, |
const IDBKeyPath& keyPath) |
: m_data(data), |
- m_blobData(makeUnique<Vector<RefPtr<BlobDataHandle>>>()), |
- m_blobInfo(wrapUnique(new Vector<WebBlobInfo>(webBlobInfo.size()))), |
+ m_blobData(WTF::makeUnique<Vector<RefPtr<BlobDataHandle>>>()), |
+ m_blobInfo(WTF::wrapUnique(new Vector<WebBlobInfo>(webBlobInfo.size()))), |
m_primaryKey(primaryKey && primaryKey->isValid() ? primaryKey : nullptr), |
m_keyPath(keyPath) { |
for (size_t i = 0; i < webBlobInfo.size(); ++i) { |
@@ -37,9 +37,9 @@ IDBValue::IDBValue(const IDBValue* value, |
IDBKey* primaryKey, |
const IDBKeyPath& keyPath) |
: m_data(value->m_data), |
- m_blobData(makeUnique<Vector<RefPtr<BlobDataHandle>>>()), |
+ m_blobData(WTF::makeUnique<Vector<RefPtr<BlobDataHandle>>>()), |
m_blobInfo( |
- wrapUnique(new Vector<WebBlobInfo>(value->m_blobInfo->size()))), |
+ WTF::wrapUnique(new Vector<WebBlobInfo>(value->m_blobInfo->size()))), |
m_primaryKey(primaryKey), |
m_keyPath(keyPath) { |
for (size_t i = 0; i < value->m_blobInfo->size(); ++i) { |