OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef Cache_h | 5 #ifndef Cache_h |
6 #define Cache_h | 6 #define Cache_h |
7 | 7 |
8 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
| 10 #include "public/platform/WebServiceWorkerCache.h" |
10 #include "wtf/Forward.h" | 11 #include "wtf/Forward.h" |
11 #include "wtf/Noncopyable.h" | 12 #include "wtf/Noncopyable.h" |
12 #include "wtf/RefCounted.h" | 13 #include "wtf/RefCounted.h" |
13 #include "wtf/Vector.h" | 14 #include "wtf/Vector.h" |
14 #include "wtf/text/WTFString.h" | 15 #include "wtf/text/WTFString.h" |
15 #include <v8.h> | 16 #include <v8.h> |
16 | 17 |
17 namespace blink { | 18 namespace blink { |
18 | 19 |
19 class Dictionary; | 20 class Dictionary; |
20 class Response; | 21 class Response; |
21 class Request; | 22 class Request; |
22 class ScriptState; | 23 class ScriptState; |
23 class WebServiceWorkerCache; | 24 class WebServiceWorkerCache; |
24 | 25 |
25 class Cache FINAL : public RefCountedWillBeGarbageCollected<Cache>, public Scrip
tWrappable { | 26 class Cache FINAL : public RefCountedWillBeGarbageCollected<Cache>, public Scrip
tWrappable, public WebServiceWorkerCache::ProxyInterface { |
26 WTF_MAKE_NONCOPYABLE(Cache); | 27 WTF_MAKE_NONCOPYABLE(Cache); |
27 public: | 28 public: |
28 static PassRefPtrWillBeRawPtr<Cache> fromWebServiceWorkerCache(WebServiceWor
kerCache*); | 29 static PassRefPtrWillBeRawPtr<Cache> fromWebServiceWorkerCache(WebServiceWor
kerCache*); |
29 | 30 |
| 31 virtual ~Cache(); |
| 32 |
30 // From Cache.idl: | 33 // From Cache.idl: |
31 ScriptPromise match(ScriptState*, Request*, const Dictionary& queryParams); | 34 ScriptPromise match(ScriptState*, Request*, const Dictionary& queryParams); |
32 ScriptPromise match(ScriptState*, const String&, const Dictionary& queryPara
ms); | 35 ScriptPromise match(ScriptState*, const String&, const Dictionary& queryPara
ms); |
33 ScriptPromise matchAll(ScriptState*, Request*, const Dictionary& queryParams
); | 36 ScriptPromise matchAll(ScriptState*, Request*, const Dictionary& queryParams
); |
34 ScriptPromise matchAll(ScriptState*, const String&, const Dictionary& queryP
arams); | 37 ScriptPromise matchAll(ScriptState*, const String&, const Dictionary& queryP
arams); |
35 ScriptPromise add(ScriptState*, Request*); | 38 ScriptPromise add(ScriptState*, Request*); |
36 ScriptPromise add(ScriptState*, const String&); | 39 ScriptPromise add(ScriptState*, const String&); |
37 ScriptPromise addAll(ScriptState*, const WillBeHeapVector<ScriptValue>&); | 40 ScriptPromise addAll(ScriptState*, const WillBeHeapVector<ScriptValue>&); |
38 ScriptPromise deleteFunction(ScriptState*, Request*, const Dictionary& query
Params); | 41 ScriptPromise deleteFunction(ScriptState*, Request*, const Dictionary& query
Params); |
39 ScriptPromise deleteFunction(ScriptState*, const String&, const Dictionary&
queryParams); | 42 ScriptPromise deleteFunction(ScriptState*, const String&, const Dictionary&
queryParams); |
40 ScriptPromise put(ScriptState*, Request*, Response*); | 43 ScriptPromise put(ScriptState*, Request*, Response*); |
41 ScriptPromise put(ScriptState*, const String&, Response*); | 44 ScriptPromise put(ScriptState*, const String&, Response*); |
42 ScriptPromise keys(ScriptState*); | 45 ScriptPromise keys(ScriptState*); |
43 ScriptPromise keys(ScriptState*, Request*, const Dictionary& queryParams); | 46 ScriptPromise keys(ScriptState*, Request*, const Dictionary& queryParams); |
44 ScriptPromise keys(ScriptState*, const String&, const Dictionary& queryParam
s); | 47 ScriptPromise keys(ScriptState*, const String&, const Dictionary& queryParam
s); |
45 | 48 |
46 void trace(Visitor*) { } | 49 void trace(Visitor*) { } |
47 | 50 |
48 private: | 51 private: |
49 explicit Cache(WebServiceWorkerCache* webCache); | 52 explicit Cache(WebServiceWorkerCache* webCache); |
50 | 53 |
51 WebServiceWorkerCache const* ALLOW_UNUSED m_webCache; | 54 ScriptPromise matchImpl(ScriptState*, PassRefPtrWillBeRawPtr<Request>, const
Dictionary& queryParams); |
| 55 ScriptPromise matchAllImpl(ScriptState*, PassRefPtrWillBeRawPtr<Request>, co
nst Dictionary& queryParams); |
| 56 ScriptPromise addImpl(ScriptState*, PassRefPtrWillBeRawPtr<Request>); |
| 57 ScriptPromise addAllImpl(ScriptState*, Vector<RefPtrWillBeRawPtr<Request> >)
; |
| 58 ScriptPromise deleteImpl(ScriptState*, PassRefPtrWillBeRawPtr<Request>, cons
t Dictionary& queryParams); |
| 59 ScriptPromise putImpl(ScriptState*, PassRefPtrWillBeRawPtr<Request>, Respons
e*); |
| 60 ScriptPromise keysImpl(ScriptState*); |
| 61 ScriptPromise keysImpl(ScriptState*, PassRefPtrWillBeRawPtr<Request>, const
Dictionary& queryParams); |
| 62 |
| 63 WebServiceWorkerCache* m_webCache; |
52 }; | 64 }; |
53 | 65 |
54 } // namespace blink | 66 } // namespace blink |
55 | 67 |
56 #endif // Cache_h | 68 #endif // Cache_h |
OLD | NEW |