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

Side by Side 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, 9 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 #ifndef CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
6 #define CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
7
8 #include <map>
9
10 #include "base/callback.h"
11 #include "chrome/browser/browsing_data_appcache_helper.h"
12
13 class MockBrowsingDataAppCacheHelper
14 : public BrowsingDataAppCacheHelper {
15 public:
16 explicit MockBrowsingDataAppCacheHelper(Profile* profile);
17
18 virtual void StartFetching(Callback0::Type* completion_callback);
19 virtual void CancelNotification();
20 virtual void DeleteAppCache(int64 group_id);
21
22 private:
23 virtual ~MockBrowsingDataAppCacheHelper();
24 };
25
26 #endif // CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
OLDNEW
« 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