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

Unified Diff: chrome/browser/browsing_data_appcache_helper.cc

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/browser/browsing_data_appcache_helper.h ('k') | chrome/browser/browsing_data_database_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.cc
===================================================================
--- chrome/browser/browsing_data_appcache_helper.cc (revision 0)
+++ chrome/browser/browsing_data_appcache_helper.cc (revision 0)
@@ -0,0 +1,68 @@
+// 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.
+
+#include "chrome/browser/browsing_data_appcache_helper.h"
+
+BrowsingDataAppCacheHelper::BrowsingDataAppCacheHelper(Profile* profile)
+ : is_fetching_(false) {
+}
+
+void BrowsingDataAppCacheHelper::StartFetching(Callback0::Type* callback) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+ DCHECK(!is_fetching_);
+ DCHECK(callback);
+ is_fetching_ = true;
+ info_list_.clear();
+ completion_callback_.reset(callback);
+ ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, NewRunnableMethod(
+ this, &BrowsingDataAppCacheHelper::StartFetchingInIOThread));
+}
+
+void BrowsingDataAppCacheHelper::CancelNotification() {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+ completion_callback_.reset();
+}
+
+void BrowsingDataAppCacheHelper::DeleteAppCache(int64 group_id) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+ ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, NewRunnableMethod(
+ this, &BrowsingDataAppCacheHelper::DeleteAppCacheInIOThread,
+ group_id));
+}
+
+void BrowsingDataAppCacheHelper::StartFetchingInIOThread() {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+
+#ifndef NDEBUG
+ // TODO(michaeln): get real data from the appcache service
+ info_list_.push_back(
+ AppCacheInfo(GURL("http://bogus/manifest"),
+ 1 * 1024 * 1024, base::Time::Now(), base::Time::Now(), 1));
+ info_list_.push_back(
+ AppCacheInfo(GURL("https://bogus/manifest"),
+ 2 * 1024 * 1024, base::Time::Now(), base::Time::Now(), 2));
+ info_list_.push_back(
+ AppCacheInfo(GURL("http://bogus:8080/manifest"),
+ 3 * 1024 * 1024, base::Time::Now(), base::Time::Now(), 3));
+#endif
+
+ ChromeThread::PostTask(ChromeThread::UI, FROM_HERE, NewRunnableMethod(
+ this, &BrowsingDataAppCacheHelper::OnFetchComplete));
+}
+
+void BrowsingDataAppCacheHelper::OnFetchComplete() {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+ DCHECK(is_fetching_);
+ is_fetching_ = false;
+ if (completion_callback_ != NULL) {
+ completion_callback_->Run();
+ completion_callback_.reset();
+ }
+}
+
+void BrowsingDataAppCacheHelper::DeleteAppCacheInIOThread(
+ int64 group_id) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+ // TODO(michaeln): plumb to the appcache service
+}
Property changes on: chrome\browser\browsing_data_appcache_helper.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/browsing_data_appcache_helper.h ('k') | chrome/browser/browsing_data_database_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698