OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 CHROME_BROWSER_BROWSING_DATA_APPCACHE_HELPER_H_ |
| 6 #define CHROME_BROWSER_BROWSING_DATA_APPCACHE_HELPER_H_ |
| 7 |
| 8 #include <string> |
| 9 #include <vector> |
| 10 |
| 11 #include "base/scoped_ptr.h" |
| 12 #include "base/task.h" |
| 13 #include "chrome/common/appcache/chrome_appcache_service.h" |
| 14 |
| 15 class Profile; |
| 16 |
| 17 // This class fetches appcache information on behalf of a caller |
| 18 // on the UI thread. |
| 19 class BrowsingDataAppCacheHelper |
| 20 : public base::RefCountedThreadSafe<BrowsingDataAppCacheHelper> { |
| 21 public: |
| 22 // Contains detailed information about an appcache. |
| 23 struct AppCacheInfo { |
| 24 AppCacheInfo() {} |
| 25 AppCacheInfo(const GURL& manifest_url, |
| 26 int64 size, |
| 27 base::Time creation_time, |
| 28 base::Time last_access_time, |
| 29 int64 group_id) |
| 30 : manifest_url(manifest_url), |
| 31 size(size), |
| 32 creation_time(creation_time), |
| 33 last_access_time(last_access_time), |
| 34 group_id(group_id) { |
| 35 } |
| 36 |
| 37 GURL manifest_url; |
| 38 int64 size; |
| 39 base::Time creation_time; |
| 40 base::Time last_access_time; |
| 41 int64 group_id; |
| 42 }; |
| 43 |
| 44 explicit BrowsingDataAppCacheHelper(Profile* profile); |
| 45 |
| 46 virtual void StartFetching(Callback0::Type* completion_callback); |
| 47 virtual void CancelNotification(); |
| 48 virtual void DeleteAppCache(int64 group_id); |
| 49 |
| 50 const std::vector<AppCacheInfo>& info_list() const { |
| 51 DCHECK(!is_fetching_); |
| 52 return info_list_; |
| 53 } |
| 54 |
| 55 private: |
| 56 friend class base::RefCountedThreadSafe<BrowsingDataAppCacheHelper>; |
| 57 friend class MockBrowsingDataAppCacheHelper; |
| 58 |
| 59 virtual ~BrowsingDataAppCacheHelper() {} |
| 60 |
| 61 void StartFetchingInIOThread(); |
| 62 void OnFetchComplete(); |
| 63 void DeleteAppCacheInIOThread(int64 group_id); |
| 64 |
| 65 bool is_fetching_; |
| 66 std::vector<AppCacheInfo> info_list_; |
| 67 scoped_ptr<Callback0::Type> completion_callback_; |
| 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(BrowsingDataAppCacheHelper); |
| 70 }; |
| 71 |
| 72 #endif // CHROME_BROWSER_BROWSING_DATA_APPCACHE_HELPER_H_ |
OLD | NEW |