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

Unified Diff: third_party/WebKit/Source/modules/cachestorage/CacheStorage.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/cachestorage/CacheStorage.cpp
diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp
index 40eb899c1a056e24fa047a2ed792b040fde4c839..58675ea98125f9c4d575c1db1c3306185245b795 100644
--- a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp
+++ b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp
@@ -94,7 +94,7 @@ class CacheStorage::WithCacheCallbacks final
m_resolver->getExecutionContext()->isContextDestroyed())
return;
Cache* cache = Cache::create(m_cacheStorage->m_scopedFetcher,
- wrapUnique(webCache.release()));
+ WTF::wrapUnique(webCache.release()));
m_resolver->resolve(cache);
m_resolver.clear();
}
@@ -226,7 +226,7 @@ class CacheStorage::KeysCallbacks final
CacheStorage* CacheStorage::create(
GlobalFetch::ScopedFetcher* fetcher,
WebServiceWorkerCacheStorage* webCacheStorage) {
- return new CacheStorage(fetcher, wrapUnique(webCacheStorage));
+ return new CacheStorage(fetcher, WTF::wrapUnique(webCacheStorage));
}
ScriptPromise CacheStorage::open(ScriptState* scriptState,

Powered by Google App Engine
This is Rietveld 408576698