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

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

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: Horribleness 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.h
diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.h b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
index cc1e6c8f1b14857ba27ca7d45c9901d54f432f51..d3c335e6d4d398dd4a8936b67ef0168b602457a3 100644
--- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
@@ -120,17 +120,18 @@ class CannedBrowsingDataFileSystemHelper
}
// BrowsingDataFileSystemHelper implementation.
- virtual void StartFetching(const base::Callback<
- void(const std::list<FileSystemInfo>&)>& callback) override;
+ void StartFetching(
+ const base::Callback<void(const std::list<FileSystemInfo>&)>& callback)
+ override;
// Note that this doesn't actually have an implementation for this canned
// class. It hasn't been necessary for anything that uses the canned
// implementation, as the canned class is only used in tests, or in read-only
// contexts (like the non-modal cookie dialog).
- virtual void DeleteFileSystemOrigin(const GURL& origin) override {}
+ void DeleteFileSystemOrigin(const GURL& origin) override {}
private:
- virtual ~CannedBrowsingDataFileSystemHelper();
+ ~CannedBrowsingDataFileSystemHelper() override;
// Holds the current list of filesystems returned to the client.
std::list<FileSystemInfo> file_system_info_;

Powered by Google App Engine
This is Rietveld 408576698