| Index: third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h
|
| diff --git a/third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h b/third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h
|
| index fa7b0ba41fc6ad57d2e2ca8bdf94353f2cabff72..8ce012e422c70b69af573a822eb4d0fff53eecf5 100644
|
| --- a/third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h
|
| +++ b/third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h
|
| @@ -7,12 +7,13 @@
|
|
|
| #include "public/platform/WebCallbacks.h"
|
| #include "public/platform/WebCommon.h"
|
| -#include "public/platform/WebPassOwnPtr.h"
|
| #include "public/platform/WebString.h"
|
| #include "public/platform/WebVector.h"
|
| #include "public/platform/modules/serviceworker/WebServiceWorkerCache.h"
|
| #include "public/platform/modules/serviceworker/WebServiceWorkerCacheError.h"
|
|
|
| +#include <memory>
|
| +
|
| namespace blink {
|
|
|
| class WebServiceWorkerCache;
|
| @@ -23,7 +24,7 @@ class WebServiceWorkerCache;
|
| class WebServiceWorkerCacheStorage {
|
| public:
|
| using CacheStorageCallbacks = WebCallbacks<void, WebServiceWorkerCacheError>;
|
| - using CacheStorageWithCacheCallbacks = WebCallbacks<WebPassOwnPtr<WebServiceWorkerCache>, WebServiceWorkerCacheError>;
|
| + using CacheStorageWithCacheCallbacks = WebCallbacks<std::unique_ptr<WebServiceWorkerCache>, WebServiceWorkerCacheError>;
|
| using CacheStorageKeysCallbacks = WebCallbacks<const WebVector<WebString>&, WebServiceWorkerCacheError>;
|
| using CacheStorageMatchCallbacks = WebCallbacks<const WebServiceWorkerResponse&, WebServiceWorkerCacheError>;
|
|
|
|
|