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

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

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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 ff3919d17cc3eaebc9ec8d31cbdacb5c7fb62d2c..cc1e6c8f1b14857ba27ca7d45c9901d54f432f51 100644
--- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
@@ -121,13 +121,13 @@ class CannedBrowsingDataFileSystemHelper
// BrowsingDataFileSystemHelper implementation.
virtual void StartFetching(const base::Callback<
- void(const std::list<FileSystemInfo>&)>& callback) OVERRIDE;
+ 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 {}
+ virtual void DeleteFileSystemOrigin(const GURL& origin) override {}
private:
virtual ~CannedBrowsingDataFileSystemHelper();

Powered by Google App Engine
This is Rietveld 408576698