| OLD | NEW |
| 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 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" | 14 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" |
| 15 | 15 |
| 16 // Mock for BrowsingDataFileSystemHelper. | 16 // Mock for BrowsingDataFileSystemHelper. |
| 17 // Use AddFileSystemSamples() or add directly to response_ list, then call | 17 // Use AddFileSystemSamples() or add directly to response_ list, then call |
| 18 // Notify(). | 18 // Notify(). |
| 19 class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper { | 19 class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper { |
| 20 public: | 20 public: |
| 21 explicit MockBrowsingDataFileSystemHelper(Profile* profile); | 21 explicit MockBrowsingDataFileSystemHelper(Profile* profile); |
| 22 | 22 |
| 23 // BrowsingDataFileSystemHelper implementation. | 23 // BrowsingDataFileSystemHelper implementation. |
| 24 virtual void StartFetching(const base::Callback< | 24 virtual void StartFetching(const base::Callback< |
| 25 void(const std::list<FileSystemInfo>&)>& callback) OVERRIDE; | 25 void(const std::list<FileSystemInfo>&)>& callback) override; |
| 26 virtual void DeleteFileSystemOrigin(const GURL& origin) OVERRIDE; | 26 virtual void DeleteFileSystemOrigin(const GURL& origin) override; |
| 27 | 27 |
| 28 // Adds a specific filesystem. | 28 // Adds a specific filesystem. |
| 29 void AddFileSystem(const GURL& origin, | 29 void AddFileSystem(const GURL& origin, |
| 30 bool has_persistent, | 30 bool has_persistent, |
| 31 bool has_temporary, | 31 bool has_temporary, |
| 32 bool has_syncable); | 32 bool has_syncable); |
| 33 | 33 |
| 34 // Adds some FilesystemInfo samples. | 34 // Adds some FilesystemInfo samples. |
| 35 void AddFileSystemSamples(); | 35 void AddFileSystemSamples(); |
| 36 | 36 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 53 | 53 |
| 54 // Stores which filesystems exist. | 54 // Stores which filesystems exist. |
| 55 std::map<const std::string, bool> file_systems_; | 55 std::map<const std::string, bool> file_systems_; |
| 56 | 56 |
| 57 std::list<FileSystemInfo> response_; | 57 std::list<FileSystemInfo> response_; |
| 58 | 58 |
| 59 DISALLOW_COPY_AND_ASSIGN(MockBrowsingDataFileSystemHelper); | 59 DISALLOW_COPY_AND_ASSIGN(MockBrowsingDataFileSystemHelper); |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_ | 62 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_FILE_SYSTEM_HELPER_H_ |
| OLD | NEW |