| Index: chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.cc b/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| index 0df684214ee80fc8e0808d31b6dd098132909e0a..ee896474343ec0cb86c15a6da30a23c8d4b9b2f0 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| @@ -34,12 +34,13 @@ class BrowsingDataFileSystemHelperImpl : public BrowsingDataFileSystemHelper {
|
| // BrowsingDataFileSystemHelper implementation
|
| explicit BrowsingDataFileSystemHelperImpl(
|
| storage::FileSystemContext* filesystem_context);
|
| - 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;
|
|
|
| private:
|
| - virtual ~BrowsingDataFileSystemHelperImpl();
|
| + ~BrowsingDataFileSystemHelperImpl() override;
|
|
|
| // Enumerates all filesystem files, storing the resulting list into
|
| // file_system_file_ for later use. This must be called on the file
|
|
|