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 CONTENT_TEST_APPCACHE_TEST_HELPER_H_ | 5 #ifndef CONTENT_TEST_APPCACHE_TEST_HELPER_H_ |
6 #define CONTENT_TEST_APPCACHE_TEST_HELPER_H_ | 6 #define CONTENT_TEST_APPCACHE_TEST_HELPER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "content/browser/appcache/appcache_storage.h" | 10 #include "content/browser/appcache/appcache_storage.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 class AppCacheServiceImpl; | 13 class AppCacheServiceImpl; |
14 } | 14 } |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 | 17 |
18 // Helper class for inserting data into a ChromeAppCacheService and reading it | 18 // Helper class for inserting data into a ChromeAppCacheService and reading it |
19 // back. | 19 // back. |
20 class AppCacheTestHelper : public AppCacheStorage::Delegate { | 20 class AppCacheTestHelper : public AppCacheStorage::Delegate { |
21 public: | 21 public: |
22 AppCacheTestHelper(); | 22 AppCacheTestHelper(); |
23 virtual ~AppCacheTestHelper(); | 23 ~AppCacheTestHelper() override; |
24 void AddGroupAndCache(AppCacheServiceImpl* appcache_service, | 24 void AddGroupAndCache(AppCacheServiceImpl* appcache_service, |
25 const GURL& manifest_url); | 25 const GURL& manifest_url); |
26 | 26 |
27 void GetOriginsWithCaches(AppCacheServiceImpl* appcache_service, | 27 void GetOriginsWithCaches(AppCacheServiceImpl* appcache_service, |
28 std::set<GURL>* origins); | 28 std::set<GURL>* origins); |
29 private: | 29 private: |
30 virtual void OnGroupAndNewestCacheStored( | 30 void OnGroupAndNewestCacheStored(AppCacheGroup* group, |
31 AppCacheGroup* group, | 31 AppCache* newest_cache, |
32 AppCache* newest_cache, | 32 bool success, |
33 bool success, | 33 bool would_exceed_quota) override; |
34 bool would_exceed_quota) override; | |
35 void OnGotAppCacheInfo(int rv); | 34 void OnGotAppCacheInfo(int rv); |
36 | 35 |
37 int group_id_; | 36 int group_id_; |
38 int appcache_id_; | 37 int appcache_id_; |
39 int response_id_; | 38 int response_id_; |
40 scoped_refptr<AppCacheInfoCollection> appcache_info_; | 39 scoped_refptr<AppCacheInfoCollection> appcache_info_; |
41 std::set<GURL>* origins_; // not owned | 40 std::set<GURL>* origins_; // not owned |
42 | 41 |
43 DISALLOW_COPY_AND_ASSIGN(AppCacheTestHelper); | 42 DISALLOW_COPY_AND_ASSIGN(AppCacheTestHelper); |
44 }; | 43 }; |
45 | 44 |
46 } // namespace content | 45 } // namespace content |
47 | 46 |
48 #endif // CONTENT_TEST_APPCACHE_TEST_HELPER_H_ | 47 #endif // CONTENT_TEST_APPCACHE_TEST_HELPER_H_ |
OLD | NEW |