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, |