Update V8 to version 4.7.21.
[chromium-blink-merge.git] / chrome / browser / browsing_data / mock_browsing_data_service_worker_helper.h
blob802c0e6bd7f36b1e82ce7417f86b5ac5cf174aa8
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_
8 #include <list>
9 #include <map>
11 #include "base/callback.h"
12 #include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h"
14 class Profile;
16 // Mock for BrowsingDataServiceWorkerHelper.
17 // Use AddServiceWorkerSamples() or add directly to response_ list, then
18 // call Notify().
19 class MockBrowsingDataServiceWorkerHelper
20 : public BrowsingDataServiceWorkerHelper {
21 public:
22 explicit MockBrowsingDataServiceWorkerHelper(Profile* profile);
24 // Adds some ServiceWorkerInfo samples.
25 void AddServiceWorkerSamples();
27 // Notifies the callback.
28 void Notify();
30 // Marks all service worker files as existing.
31 void Reset();
33 // Returns true if all service worker files were deleted since the last
34 // Reset() invokation.
35 bool AllDeleted();
37 // BrowsingDataServiceWorkerHelper.
38 void StartFetching(const FetchCallback& callback) override;
39 void DeleteServiceWorkers(const GURL& origin) override;
41 private:
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_