1 // Copyright 2015 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.
5 #ifndef CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_CACHE_STORAGE_HELPER_H_
6 #define CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_CACHE_STORAGE_HELPER_H_
11 #include "base/callback.h"
12 #include "chrome/browser/browsing_data/browsing_data_cache_storage_helper.h"
16 // Mock for BrowsingDataCacheStorageHelper.
17 // Use AddCacheStorageSamples() or add directly to response_ list, then
19 class MockBrowsingDataCacheStorageHelper
20 : public BrowsingDataCacheStorageHelper
{
22 explicit MockBrowsingDataCacheStorageHelper(Profile
* profile
);
24 // Adds some CacheStorageUsageInfo samples.
25 void AddCacheStorageSamples();
27 // Notifies the callback.
30 // Marks all cache storage files as existing.
33 // Returns true if all cache storage files were deleted since the last
34 // Reset() invokation.
37 // BrowsingDataCacheStorageHelper.
38 void StartFetching(const base::Callback
<
39 void(const std::list
<content::CacheStorageUsageInfo
>&)>&
41 void DeleteCacheStorage(const GURL
& origin
) override
;
44 ~MockBrowsingDataCacheStorageHelper() override
;
46 FetchCallback callback_
;
47 std::map
<GURL
, bool> origins_
;
48 std::list
<content::CacheStorageUsageInfo
> response_
;
50 DISALLOW_COPY_AND_ASSIGN(MockBrowsingDataCacheStorageHelper
);
53 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_CACHE_STORAGE_HELPER_H_