Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / browser / browsing_data / mock_browsing_data_file_system_helper.h
blob6388cf2bb9f53b12e5605cbc3d4d4476a7389afd
1 // Copyright (c) 2012 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_FILE_SYSTEM_HELPER_H_
6 #define CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_
8 #include <list>
9 #include <map>
10 #include <string>
12 #include "base/callback.h"
13 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h"
15 // Mock for BrowsingDataFileSystemHelper.
16 // Use AddFileSystemSamples() or add directly to response_ list, then call
17 // Notify().
18 class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper {
19 public:
20 explicit MockBrowsingDataFileSystemHelper(Profile* profile);
22 // BrowsingDataFileSystemHelper implementation.
23 void StartFetching(const FetchCallback& callback) override;
24 void DeleteFileSystemOrigin(const GURL& origin) override;
26 // Adds a specific filesystem.
27 void AddFileSystem(const GURL& origin,
28 bool has_persistent,
29 bool has_temporary,
30 bool has_syncable);
32 // Adds some FilesystemInfo samples.
33 void AddFileSystemSamples();
35 // Notifies the callback.
36 void Notify();
38 // Marks all filesystems as existing.
39 void Reset();
41 // Returns true if all filesystemss since the last Reset() invocation were
42 // deleted.
43 bool AllDeleted();
45 GURL last_deleted_origin_;
47 private:
48 ~MockBrowsingDataFileSystemHelper() override;
50 FetchCallback callback_;
52 // Stores which filesystems exist.
53 std::map<const std::string, bool> file_systems_;
55 std::list<FileSystemInfo> response_;
57 DISALLOW_COPY_AND_ASSIGN(MockBrowsingDataFileSystemHelper);
60 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_