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