| Index: chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
|
| diff --git a/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h b/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
|
| index 87866459f3059b2ef0860bf407f7f8c744825dd5..777bca2bdd27bfff99541d3f614351ca37d6b7e8 100644
|
| --- a/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
|
| +++ b/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
|
| @@ -21,9 +21,10 @@ class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper {
|
| explicit MockBrowsingDataFileSystemHelper(Profile* profile);
|
|
|
| // BrowsingDataFileSystemHelper implementation.
|
| - virtual void StartFetching(const base::Callback<
|
| - void(const std::list<FileSystemInfo>&)>& callback) override;
|
| - virtual void DeleteFileSystemOrigin(const GURL& origin) override;
|
| + void StartFetching(
|
| + const base::Callback<void(const std::list<FileSystemInfo>&)>& callback)
|
| + override;
|
| + void DeleteFileSystemOrigin(const GURL& origin) override;
|
|
|
| // Adds a specific filesystem.
|
| void AddFileSystem(const GURL& origin,
|
| @@ -47,7 +48,7 @@ class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper {
|
| GURL last_deleted_origin_;
|
|
|
| private:
|
| - virtual ~MockBrowsingDataFileSystemHelper();
|
| + ~MockBrowsingDataFileSystemHelper() override;
|
|
|
| base::Callback<void(const std::list<FileSystemInfo>&)> callback_;
|
|
|
|
|