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 "wtf/Forward.h" | 10 #include "wtf/Forward.h" |
11 #include "wtf/Noncopyable.h" | 11 #include "wtf/Noncopyable.h" |
12 #include "wtf/RefCounted.h" | |
13 #include "wtf/Vector.h" | 12 #include "wtf/Vector.h" |
14 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
15 #include <v8.h> | 14 #include <v8.h> |
16 | 15 |
17 namespace blink { | 16 namespace blink { |
18 | 17 |
19 class Dictionary; | 18 class Dictionary; |
20 class Response; | 19 class Response; |
21 class Request; | 20 class Request; |
22 class ScriptState; | 21 class ScriptState; |
23 class WebServiceWorkerCache; | 22 class WebServiceWorkerCache; |
24 | 23 |
25 class Cache FINAL : public RefCountedWillBeGarbageCollected<Cache>, public Scrip
tWrappable { | 24 class Cache FINAL : public GarbageCollected<Cache>, public ScriptWrappable { |
26 WTF_MAKE_NONCOPYABLE(Cache); | 25 WTF_MAKE_NONCOPYABLE(Cache); |
27 public: | 26 public: |
28 static PassRefPtrWillBeRawPtr<Cache> fromWebServiceWorkerCache(WebServiceWor
kerCache*); | 27 static Cache* fromWebServiceWorkerCache(WebServiceWorkerCache*); |
29 | 28 |
30 // From Cache.idl: | 29 // From Cache.idl: |
31 ScriptPromise match(ScriptState*, Request*, const Dictionary& queryParams); | 30 ScriptPromise match(ScriptState*, Request*, const Dictionary& queryParams); |
32 ScriptPromise match(ScriptState*, const String&, const Dictionary& queryPara
ms); | 31 ScriptPromise match(ScriptState*, const String&, const Dictionary& queryPara
ms); |
33 ScriptPromise matchAll(ScriptState*, Request*, const Dictionary& queryParams
); | 32 ScriptPromise matchAll(ScriptState*, Request*, const Dictionary& queryParams
); |
34 ScriptPromise matchAll(ScriptState*, const String&, const Dictionary& queryP
arams); | 33 ScriptPromise matchAll(ScriptState*, const String&, const Dictionary& queryP
arams); |
35 ScriptPromise add(ScriptState*, Request*); | 34 ScriptPromise add(ScriptState*, Request*); |
36 ScriptPromise add(ScriptState*, const String&); | 35 ScriptPromise add(ScriptState*, const String&); |
37 ScriptPromise addAll(ScriptState*, const Vector<ScriptValue>&); | 36 ScriptPromise addAll(ScriptState*, const Vector<ScriptValue>&); |
38 ScriptPromise deleteFunction(ScriptState*, Request*, const Dictionary& query
Params); | 37 ScriptPromise deleteFunction(ScriptState*, Request*, const Dictionary& query
Params); |
39 ScriptPromise deleteFunction(ScriptState*, const String&, const Dictionary&
queryParams); | 38 ScriptPromise deleteFunction(ScriptState*, const String&, const Dictionary&
queryParams); |
40 ScriptPromise put(ScriptState*, Request*, Response*); | 39 ScriptPromise put(ScriptState*, Request*, Response*); |
41 ScriptPromise put(ScriptState*, const String&, Response*); | 40 ScriptPromise put(ScriptState*, const String&, Response*); |
42 ScriptPromise keys(ScriptState*); | 41 ScriptPromise keys(ScriptState*); |
43 ScriptPromise keys(ScriptState*, Request*, const Dictionary& queryParams); | 42 ScriptPromise keys(ScriptState*, Request*, const Dictionary& queryParams); |
44 ScriptPromise keys(ScriptState*, const String&, const Dictionary& queryParam
s); | 43 ScriptPromise keys(ScriptState*, const String&, const Dictionary& queryParam
s); |
45 | 44 |
46 void trace(Visitor*) { } | 45 void trace(Visitor*) { } |
47 | 46 |
48 private: | 47 private: |
49 explicit Cache(WebServiceWorkerCache* webCache); | 48 explicit Cache(WebServiceWorkerCache* webCache); |
50 | 49 |
51 WebServiceWorkerCache const* ALLOW_UNUSED m_webCache; | 50 WebServiceWorkerCache const* ALLOW_UNUSED m_webCache; |
52 }; | 51 }; |
53 | 52 |
54 } // namespace blink | 53 } // namespace blink |
55 | 54 |
56 #endif // Cache_h | 55 #endif // Cache_h |
OLD | NEW |