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

Side by Side Diff: chrome/browser/mock_browsing_data_appcache_helper.h

Issue 8702019: Use callback_forward.h instead of callback.h where possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix include order. Created 9 years 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_ 5 #ifndef CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
6 #define CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_ 6 #define CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/callback.h" 9 #include "base/callback_forward.h"
10 #include "chrome/browser/browsing_data_appcache_helper.h" 10 #include "chrome/browser/browsing_data_appcache_helper.h"
11 11
12 class MockBrowsingDataAppCacheHelper 12 class MockBrowsingDataAppCacheHelper
13 : public BrowsingDataAppCacheHelper { 13 : public BrowsingDataAppCacheHelper {
14 public: 14 public:
15 explicit MockBrowsingDataAppCacheHelper(Profile* profile); 15 explicit MockBrowsingDataAppCacheHelper(Profile* profile);
16 16
17 virtual void StartFetching(const base::Closure& completion_callback) OVERRIDE; 17 virtual void StartFetching(const base::Closure& completion_callback) OVERRIDE;
18 virtual void CancelNotification() OVERRIDE; 18 virtual void CancelNotification() OVERRIDE;
19 virtual void DeleteAppCacheGroup(const GURL& manifest_url) OVERRIDE; 19 virtual void DeleteAppCacheGroup(const GURL& manifest_url) OVERRIDE;
20 20
21 private: 21 private:
22 virtual ~MockBrowsingDataAppCacheHelper(); 22 virtual ~MockBrowsingDataAppCacheHelper();
23 }; 23 };
24 24
25 #endif // CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_ 25 #endif // CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/intents/web_intents_registry.h ('k') | chrome/browser/password_manager/password_store_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698