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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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 #include "chrome/browser/browsing_data_appcache_helper.h"
6
7 BrowsingDataAppCacheHelper::BrowsingDataAppCacheHelper(Profile* profile)
8 : is_fetching_(false) {
9 }
10
11 void BrowsingDataAppCacheHelper::StartFetching(Callback0::Type* callback) {
12 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
13 DCHECK(!is_fetching_);
14 DCHECK(callback);
15 is_fetching_ = true;
16 info_list_.clear();
17 completion_callback_.reset(callback);
18 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, NewRunnableMethod(
19 this, &BrowsingDataAppCacheHelper::StartFetchingInIOThread));
20 }
21
22 void BrowsingDataAppCacheHelper::CancelNotification() {
23 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
24 completion_callback_.reset();
25 }
26
27 void BrowsingDataAppCacheHelper::DeleteAppCache(int64 group_id) {
28 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
29 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, NewRunnableMethod(
30 this, &BrowsingDataAppCacheHelper::DeleteAppCacheInIOThread,
31 group_id));
32 }
33
34 void BrowsingDataAppCacheHelper::StartFetchingInIOThread() {
35 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
36
37 #ifndef NDEBUG
38 // TODO(michaeln): get real data from the appcache service
39 info_list_.push_back(
40 AppCacheInfo(GURL("http://bogus/manifest"),
41 1 * 1024 * 1024, base::Time::Now(), base::Time::Now(), 1));
42 info_list_.push_back(
43 AppCacheInfo(GURL("https://bogus/manifest"),
44 2 * 1024 * 1024, base::Time::Now(), base::Time::Now(), 2));
45 info_list_.push_back(
46 AppCacheInfo(GURL("http://bogus:8080/manifest"),
47 3 * 1024 * 1024, base::Time::Now(), base::Time::Now(), 3));
48 #endif
49
50 ChromeThread::PostTask(ChromeThread::UI, FROM_HERE, NewRunnableMethod(
51 this, &BrowsingDataAppCacheHelper::OnFetchComplete));
52 }
53
54 void BrowsingDataAppCacheHelper::OnFetchComplete() {
55 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
56 DCHECK(is_fetching_);
57 is_fetching_ = false;
58 if (completion_callback_ != NULL) {
59 completion_callback_->Run();
60 completion_callback_.reset();
61 }
62 }
63
64 void BrowsingDataAppCacheHelper::DeleteAppCacheInIOThread(
65 int64 group_id) {
66 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
67 // TODO(michaeln): plumb to the appcache service
68 }
OLDNEW
« 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