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

Unified Diff: chrome/browser/mock_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
Index: chrome/browser/mock_browsing_data_appcache_helper.h
===================================================================
--- chrome/browser/mock_browsing_data_appcache_helper.h (revision 0)
+++ chrome/browser/mock_browsing_data_appcache_helper.h (revision 0)
@@ -0,0 +1,26 @@
+// 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_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
+#define CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
+
+#include <map>
+
+#include "base/callback.h"
+#include "chrome/browser/browsing_data_appcache_helper.h"
+
+class MockBrowsingDataAppCacheHelper
+ : public BrowsingDataAppCacheHelper {
+ public:
+ explicit MockBrowsingDataAppCacheHelper(Profile* profile);
+
+ virtual void StartFetching(Callback0::Type* completion_callback);
+ virtual void CancelNotification();
+ virtual void DeleteAppCache(int64 group_id);
+
+ private:
+ virtual ~MockBrowsingDataAppCacheHelper();
+};
+
+#endif // CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
Property changes on: chrome\browser\mock_browsing_data_appcache_helper.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/gtk/options/cookies_view_unittest.cc ('k') | chrome/browser/mock_browsing_data_appcache_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698