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

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

Issue 2878081: Clean up inclusion of <map>, <set>, <vector> in chrome/browser/*.h. (Closed)
Patch Set: Created 10 years, 4 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
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 <map>
10
11 #include "base/callback.h" 9 #include "base/callback.h"
12 #include "chrome/browser/browsing_data_appcache_helper.h" 10 #include "chrome/browser/browsing_data_appcache_helper.h"
13 11
14 class MockBrowsingDataAppCacheHelper 12 class MockBrowsingDataAppCacheHelper
15 : public BrowsingDataAppCacheHelper { 13 : public BrowsingDataAppCacheHelper {
16 public: 14 public:
17 explicit MockBrowsingDataAppCacheHelper(Profile* profile); 15 explicit MockBrowsingDataAppCacheHelper(Profile* profile);
18 16
19 virtual void StartFetching(Callback0::Type* completion_callback); 17 virtual void StartFetching(Callback0::Type* completion_callback);
20 virtual void CancelNotification(); 18 virtual void CancelNotification();
21 virtual void DeleteAppCacheGroup(const GURL& manifest_url); 19 virtual void DeleteAppCacheGroup(const GURL& manifest_url);
22 20
23 private: 21 private:
24 virtual ~MockBrowsingDataAppCacheHelper(); 22 virtual ~MockBrowsingDataAppCacheHelper();
25 }; 23 };
26 24
27 #endif // CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_ 25 #endif // CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698