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

Side by Side Diff: chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h

Issue 13357004: Clear browsing data clears data for type kStorageTypeTemporary but not for kStorageTypeSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_ 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_ 6 #define CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" 13 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h"
14 14
15 // Mock for BrowsingDataFileSystemHelper. 15 // Mock for BrowsingDataFileSystemHelper.
16 // Use AddFileSystemSamples() or add directly to response_ list, then call 16 // Use AddFileSystemSamples() or add directly to response_ list, then call
17 // Notify(). 17 // Notify().
18 class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper { 18 class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper {
19 public: 19 public:
20 explicit MockBrowsingDataFileSystemHelper(Profile* profile); 20 explicit MockBrowsingDataFileSystemHelper(Profile* profile);
21 21
22 // BrowsingDataFileSystemHelper implementation. 22 // BrowsingDataFileSystemHelper implementation.
23 virtual void StartFetching(const base::Callback< 23 virtual void StartFetching(const base::Callback<
24 void(const std::list<FileSystemInfo>&)>& callback) OVERRIDE; 24 void(const std::list<FileSystemInfo>&)>& callback) OVERRIDE;
25 virtual void DeleteFileSystemOrigin(const GURL& origin) OVERRIDE; 25 virtual void DeleteFileSystemOrigin(const GURL& origin) OVERRIDE;
26 26
27 // Adds a specific filesystem. 27 // Adds a specific filesystem.
28 void AddFileSystem(const GURL& origin, 28 void AddFileSystem(const GURL& origin,
29 bool has_persistent, 29 bool has_persistent,
30 bool has_temporary); 30 bool has_temporary,
31 bool has_syncable);
31 32
32 // Adds some FilesystemInfo samples. 33 // Adds some FilesystemInfo samples.
33 void AddFileSystemSamples(); 34 void AddFileSystemSamples();
34 35
35 // Notifies the callback. 36 // Notifies the callback.
36 void Notify(); 37 void Notify();
37 38
38 // Marks all filesystems as existing. 39 // Marks all filesystems as existing.
39 void Reset(); 40 void Reset();
40 41
41 // Returns true if all filesystemss since the last Reset() invocation were 42 // Returns true if all filesystemss since the last Reset() invocation were
42 // deleted. 43 // deleted.
43 bool AllDeleted(); 44 bool AllDeleted();
44 45
45 GURL last_deleted_origin_; 46 GURL last_deleted_origin_;
46 47
47 private: 48 private:
48 virtual ~MockBrowsingDataFileSystemHelper(); 49 virtual ~MockBrowsingDataFileSystemHelper();
49 50
50 base::Callback<void(const std::list<FileSystemInfo>&)> callback_; 51 base::Callback<void(const std::list<FileSystemInfo>&)> callback_;
51 52
52 // Stores which filesystems exist. 53 // Stores which filesystems exist.
53 std::map<const std::string, bool> file_systems_; 54 std::map<const std::string, bool> file_systems_;
54 55
55 std::list<FileSystemInfo> response_; 56 std::list<FileSystemInfo> response_;
56 }; 57 };
57 58
58 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_ 59 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698