Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(953)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBValue.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698