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 InspectorCacheStorageAgent_h | 5 #ifndef InspectorCacheStorageAgent_h |
6 #define InspectorCacheStorageAgent_h | 6 #define InspectorCacheStorageAgent_h |
7 | 7 |
8 #include "core/inspector/InspectorBaseAgent.h" | 8 #include "core/inspector/InspectorBaseAgent.h" |
9 #include "core/inspector/protocol/CacheStorage.h" | 9 #include "core/inspector/protocol/CacheStorage.h" |
10 #include "modules/ModulesExport.h" | 10 #include "modules/ModulesExport.h" |
11 #include "wtf/PassOwnPtr.h" | |
12 #include "wtf/text/WTFString.h" | 11 #include "wtf/text/WTFString.h" |
13 | 12 |
14 namespace blink { | 13 namespace blink { |
15 | 14 |
16 | 15 |
17 class MODULES_EXPORT InspectorCacheStorageAgent final : public InspectorBaseAgen
t<protocol::CacheStorage::Metainfo> { | 16 class MODULES_EXPORT InspectorCacheStorageAgent final : public InspectorBaseAgen
t<protocol::CacheStorage::Metainfo> { |
18 WTF_MAKE_NONCOPYABLE(InspectorCacheStorageAgent); | 17 WTF_MAKE_NONCOPYABLE(InspectorCacheStorageAgent); |
19 | 18 |
20 public: | 19 public: |
21 static InspectorCacheStorageAgent* create() | 20 static InspectorCacheStorageAgent* create() |
(...skipping 10 matching lines...) Expand all Loading... |
32 void deleteCache(ErrorString*, const String& in_cacheId, std::unique_ptr<Del
eteCacheCallback>) override; | 31 void deleteCache(ErrorString*, const String& in_cacheId, std::unique_ptr<Del
eteCacheCallback>) override; |
33 void deleteEntry(ErrorString*, const String& in_cacheId, const String& in_re
quest, std::unique_ptr<DeleteEntryCallback>) override; | 32 void deleteEntry(ErrorString*, const String& in_cacheId, const String& in_re
quest, std::unique_ptr<DeleteEntryCallback>) override; |
34 | 33 |
35 private: | 34 private: |
36 explicit InspectorCacheStorageAgent(); | 35 explicit InspectorCacheStorageAgent(); |
37 }; | 36 }; |
38 | 37 |
39 } // namespace blink | 38 } // namespace blink |
40 | 39 |
41 #endif // InspectorCacheStorageAgent_h | 40 #endif // InspectorCacheStorageAgent_h |
OLD | NEW |