Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Side by Side Diff: Source/modules/serviceworkers/InspectorServiceWorkerCacheAgent.h

Issue 1055543004: Move Cache Storage API implementation to modules/cachestorage (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698