Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WebServiceWorkerCacheStorage_h | |
| 6 #define WebServiceWorkerCacheStorage_h | |
| 7 | |
| 8 #include "WebCommon.h" | |
| 9 #include "public/platform/WebCallbacks.h" | |
| 10 #include "public/platform/WebServiceWorkerCacheError.h" | |
| 11 #include "public/platform/WebString.h" | |
| 12 #include "public/platform/WebVector.h" | |
| 13 | |
| 14 namespace blink { | |
| 15 | |
| 16 class WebServiceWorkerCache; | |
| 17 | |
| 18 // An interface to the CacheStorage API, implemented by the embedder and passed in to blink. Blink's implementation | |
| 19 // of the ServiceWorker spec will call these methods to create/open caches, and expect callbacks from the embedder | |
| 20 // after operations complete. | |
| 21 class WebServiceWorkerCacheStorage { | |
| 22 public: | |
| 23 typedef WebCallbacks<void, WebServiceWorkerCacheError> CacheStorageCallbacks ; | |
| 24 typedef WebCallbacks<WebServiceWorkerCache, WebServiceWorkerCacheError> Cach eStorageWithCacheCallbacks; | |
| 25 typedef WebCallbacks<WebVector<WebString>, WebServiceWorkerCacheError> Cache StorageKeysCallbacks; | |
| 26 | |
| 27 WebServiceWorkerCacheStorage() { } | |
|
jochen (gone - plz use gerrit)
2014/08/05 08:51:56
nit. no need for a ctor
| |
| 28 virtual ~WebServiceWorkerCacheStorage() { } | |
| 29 | |
| 30 // Ownership of the CacheStorage*Callbacks methods passes to the WebServiceW orkerCacheStorage | |
| 31 // instance, which will delete it after calling onSuccess or onFailure. | |
| 32 virtual void dispatchGet(CacheStorageWithCacheCallbacks*, const WebString& c acheName) = 0; | |
| 33 virtual void dispatchHas(CacheStorageCallbacks*, const WebString& cacheName) = 0; | |
| 34 virtual void dispatchCreate(CacheStorageWithCacheCallbacks*, const WebString & cacheName) = 0; | |
| 35 virtual void dispatchDelete(CacheStorageCallbacks*, const WebString& cacheNa me) = 0; | |
| 36 virtual void dispatchKeys(CacheStorageKeysCallbacks*) = 0; | |
| 37 }; | |
| 38 | |
| 39 } // namespace blink | |
| 40 | |
| 41 #endif // WebServiceWorkerCacheStorage_h | |
| OLD | NEW |