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

Unified Diff: chrome/browser/browsing_data/browsing_data_file_system_helper.cc

Issue 666123002: Standardize usage of virtual/override/final in chrome/browser/browsing_data/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698