Chromium Code Reviews

Side by Side Diff: chrome/browser/mock_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.
Jump to:
View unified diff | | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2009 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/mock_browsing_data_appcache_helper.h"
6
7 #include "base/callback.h"
8 #include "base/logging.h"
9
10 MockBrowsingDataAppCacheHelper::MockBrowsingDataAppCacheHelper(
11 Profile* profile)
12 : BrowsingDataAppCacheHelper(profile) {
13 }
14
15 MockBrowsingDataAppCacheHelper::~MockBrowsingDataAppCacheHelper() {
16 }
17
18 void MockBrowsingDataAppCacheHelper::StartFetching(
19 Callback0::Type* completion_callback) {
20 completion_callback_.reset(completion_callback);
21 }
22
23 void MockBrowsingDataAppCacheHelper::CancelNotification() {
24 completion_callback_.reset(NULL);
25 }
26
27 void MockBrowsingDataAppCacheHelper::DeleteAppCache(int64 group_id) {
28 }
29
OLDNEW
« no previous file with comments | « chrome/browser/mock_browsing_data_appcache_helper.h ('k') | chrome/browser/views/appcache_info_view.h » ('j') | no next file with comments »

Powered by Google App Engine