| 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 InspectorServiceWorkerCacheAgent_h | 5 #ifndef InspectorServiceWorkerCacheAgent_h |
| 6 #define InspectorServiceWorkerCacheAgent_h | 6 #define InspectorServiceWorkerCacheAgent_h |
| 7 | 7 |
| 8 #include "core/InspectorFrontend.h" | 8 #include "core/InspectorFrontend.h" |
| 9 #include "core/inspector/InspectorBaseAgent.h" | 9 #include "core/inspector/InspectorBaseAgent.h" |
| 10 #include "wtf/PassOwnPtr.h" | 10 #include "wtf/PassOwnPtr.h" |
| 11 #include "wtf/text/WTFString.h" | 11 #include "wtf/text/WTFString.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 typedef String ErrorString; | 15 typedef String ErrorString; |
| 16 | 16 |
| 17 class ServiceWorkerGlobalScope; | 17 // TODO(dmurph): rename to InspectorCacheStorageAgent |
| 18 | 18 class InspectorServiceWorkerCacheAgent final : public InspectorBaseAgent<Inspect
orServiceWorkerCacheAgent, InspectorFrontend::CacheStorage>, public InspectorBac
kendDispatcher::CacheStorageCommandHandler { |
| 19 class InspectorServiceWorkerCacheAgent final : public InspectorBaseAgent<Inspect
orServiceWorkerCacheAgent, InspectorFrontend::ServiceWorkerCache>, public Inspec
torBackendDispatcher::ServiceWorkerCacheCommandHandler { | |
| 20 WTF_MAKE_NONCOPYABLE(InspectorServiceWorkerCacheAgent); | 19 WTF_MAKE_NONCOPYABLE(InspectorServiceWorkerCacheAgent); |
| 21 | 20 |
| 22 public: | 21 public: |
| 23 static PassOwnPtrWillBeRawPtr<InspectorServiceWorkerCacheAgent> create(Servi
ceWorkerGlobalScope* workerGlobalScope) | 22 static PassOwnPtrWillBeRawPtr<InspectorServiceWorkerCacheAgent> create() |
| 24 { | 23 { |
| 25 return adoptPtrWillBeNoop(new InspectorServiceWorkerCacheAgent(workerGlo
balScope)); | 24 return adoptPtrWillBeNoop(new InspectorServiceWorkerCacheAgent()); |
| 26 } | 25 } |
| 27 | 26 |
| 28 virtual ~InspectorServiceWorkerCacheAgent(); | 27 virtual ~InspectorServiceWorkerCacheAgent(); |
| 29 | 28 |
| 30 DECLARE_VIRTUAL_TRACE(); | 29 DECLARE_VIRTUAL_TRACE(); |
| 31 | 30 |
| 32 virtual void requestCacheNames(ErrorString*, PassRefPtrWillBeRawPtr<RequestC
acheNamesCallback>) override; | 31 virtual void requestCacheNames(ErrorString*, const String& securityOrigin, P
assRefPtrWillBeRawPtr<RequestCacheNamesCallback>) override; |
| 33 virtual void requestEntries(ErrorString*, const String& cacheName, int skipC
ount, int pageSize, PassRefPtrWillBeRawPtr<RequestEntriesCallback>) override; | 32 virtual void requestEntries(ErrorString*, const String& securityOrigin, cons
t String& cacheName, int skipCount, int pageSize, PassRefPtrWillBeRawPtr<Request
EntriesCallback>) override; |
| 34 virtual void deleteCache(ErrorString*, const String& cacheName, PassRefPtrWi
llBeRawPtr<DeleteCacheCallback>) override; | 33 virtual void deleteCache(ErrorString*, const String& securityOrigin, const S
tring& cacheName, PassRefPtrWillBeRawPtr<DeleteCacheCallback>) override; |
| 35 | 34 |
| 36 private: | 35 private: |
| 37 explicit InspectorServiceWorkerCacheAgent(ServiceWorkerGlobalScope*); | 36 explicit InspectorServiceWorkerCacheAgent(); |
| 38 | |
| 39 ServiceWorkerGlobalScope* m_globalScope; | |
| 40 }; | 37 }; |
| 41 | 38 |
| 42 } // namespace blink | 39 } // namespace blink |
| 43 | 40 |
| 44 #endif // InspectorServiceWorkerCacheAgent_h | 41 #endif // InspectorServiceWorkerCacheAgent_h |
| OLD | NEW |