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

Unified Diff: chrome/browser/browsing_data_appcache_helper.h

Issue 650110: Teach the cookie tree view / model about appcaches. Not hooked up to real dat... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/browsing_data_appcache_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browsing_data_appcache_helper.h
===================================================================
--- chrome/browser/browsing_data_appcache_helper.h (revision 0)
+++ chrome/browser/browsing_data_appcache_helper.h (revision 0)
@@ -0,0 +1,72 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_BROWSING_DATA_APPCACHE_HELPER_H_
+#define CHROME_BROWSER_BROWSING_DATA_APPCACHE_HELPER_H_
+
+#include <string>
+#include <vector>
+
+#include "base/scoped_ptr.h"
+#include "base/task.h"
+#include "chrome/common/appcache/chrome_appcache_service.h"
+
+class Profile;
+
+// This class fetches appcache information on behalf of a caller
+// on the UI thread.
+class BrowsingDataAppCacheHelper
+ : public base::RefCountedThreadSafe<BrowsingDataAppCacheHelper> {
+ public:
+ // Contains detailed information about an appcache.
+ struct AppCacheInfo {
+ AppCacheInfo() {}
+ AppCacheInfo(const GURL& manifest_url,
+ int64 size,
+ base::Time creation_time,
+ base::Time last_access_time,
+ int64 group_id)
+ : manifest_url(manifest_url),
+ size(size),
+ creation_time(creation_time),
+ last_access_time(last_access_time),
+ group_id(group_id) {
+ }
+
+ GURL manifest_url;
+ int64 size;
+ base::Time creation_time;
+ base::Time last_access_time;
+ int64 group_id;
+ };
+
+ explicit BrowsingDataAppCacheHelper(Profile* profile);
+
+ virtual void StartFetching(Callback0::Type* completion_callback);
+ virtual void CancelNotification();
+ virtual void DeleteAppCache(int64 group_id);
+
+ const std::vector<AppCacheInfo>& info_list() const {
+ DCHECK(!is_fetching_);
+ return info_list_;
+ }
+
+ private:
+ friend class base::RefCountedThreadSafe<BrowsingDataAppCacheHelper>;
+ friend class MockBrowsingDataAppCacheHelper;
+
+ virtual ~BrowsingDataAppCacheHelper() {}
+
+ void StartFetchingInIOThread();
+ void OnFetchComplete();
+ void DeleteAppCacheInIOThread(int64 group_id);
+
+ bool is_fetching_;
+ std::vector<AppCacheInfo> info_list_;
+ scoped_ptr<Callback0::Type> completion_callback_;
+
+ DISALLOW_COPY_AND_ASSIGN(BrowsingDataAppCacheHelper);
+};
+
+#endif // CHROME_BROWSER_BROWSING_DATA_APPCACHE_HELPER_H_
Property changes on: chrome\browser\browsing_data_appcache_helper.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/browsing_data_appcache_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698