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

Unified 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. 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/mock_browsing_data_appcache_helper.h ('k') | chrome/browser/views/appcache_info_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/mock_browsing_data_appcache_helper.cc
===================================================================
--- chrome/browser/mock_browsing_data_appcache_helper.cc (revision 0)
+++ chrome/browser/mock_browsing_data_appcache_helper.cc (revision 0)
@@ -0,0 +1,29 @@
+// Copyright (c) 2009 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/mock_browsing_data_appcache_helper.h"
+
+#include "base/callback.h"
+#include "base/logging.h"
+
+MockBrowsingDataAppCacheHelper::MockBrowsingDataAppCacheHelper(
+ Profile* profile)
+ : BrowsingDataAppCacheHelper(profile) {
+}
+
+MockBrowsingDataAppCacheHelper::~MockBrowsingDataAppCacheHelper() {
+}
+
+void MockBrowsingDataAppCacheHelper::StartFetching(
+ Callback0::Type* completion_callback) {
+ completion_callback_.reset(completion_callback);
+}
+
+void MockBrowsingDataAppCacheHelper::CancelNotification() {
+ completion_callback_.reset(NULL);
+}
+
+void MockBrowsingDataAppCacheHelper::DeleteAppCache(int64 group_id) {
+}
+
Property changes on: chrome\browser\mock_browsing_data_appcache_helper.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« 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
This is Rietveld 408576698