1 // Copyright 2014 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_SERVICE_WORKER_HELPER_H_
6 #define CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_SERVICE_WORKER_HELPER_H_
11 #include "base/callback.h"
12 #include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h"
16 // Mock for BrowsingDataServiceWorkerHelper.
17 // Use AddServiceWorkerSamples() or add directly to response_ list, then
19 class MockBrowsingDataServiceWorkerHelper
20 : public BrowsingDataServiceWorkerHelper
{
22 explicit MockBrowsingDataServiceWorkerHelper(Profile
* profile
);
24 // Adds some ServiceWorkerInfo samples.
25 void AddServiceWorkerSamples();
27 // Notifies the callback.
30 // Marks all service worker files as existing.
33 // Returns true if all service worker files were deleted since the last
34 // Reset() invokation.
37 // BrowsingDataServiceWorkerHelper.
38 void StartFetching(const FetchCallback
& callback
) override
;
39 void DeleteServiceWorkers(const GURL
& origin
) override
;
42 ~MockBrowsingDataServiceWorkerHelper() override
;
44 FetchCallback callback_
;
45 std::map
<GURL
, bool> origins_
;
46 std::list
<content::ServiceWorkerUsageInfo
> response_
;
48 DISALLOW_COPY_AND_ASSIGN(MockBrowsingDataServiceWorkerHelper
);
51 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_SERVICE_WORKER_HELPER_H_