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

Unified Diff: chrome/browser/browsing_data/browsing_data_quota_helper_impl.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: 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_quota_helper_impl.h
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
index 90127b187e30d0c2e62d25915d897f73ccb7dc6c..4cd6108fb5e4130e7ec97e62855029a6c9d73b94 100644
--- a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
@@ -27,14 +27,14 @@ class QuotaManager;
// IO thread, we have to communicate over thread using PostTask.
class BrowsingDataQuotaHelperImpl : public BrowsingDataQuotaHelper {
public:
- virtual void StartFetching(const FetchResultCallback& callback) override;
- virtual void RevokeHostQuota(const std::string& host) override;
+ void StartFetching(const FetchResultCallback& callback) override;
+ void RevokeHostQuota(const std::string& host) override;
private:
BrowsingDataQuotaHelperImpl(base::MessageLoopProxy* ui_thread,
base::MessageLoopProxy* io_thread,
storage::QuotaManager* quota_manager);
- virtual ~BrowsingDataQuotaHelperImpl();
+ ~BrowsingDataQuotaHelperImpl() override;
void FetchQuotaInfo();

Powered by Google App Engine
This is Rietveld 408576698