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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_database.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/safe_browsing/safe_browsing_database.h
diff --git a/chrome/browser/safe_browsing/safe_browsing_database.h b/chrome/browser/safe_browsing/safe_browsing_database.h
index 32fad8a4d9530f42a5e04adbafdf1a445a76276e..17aad1d1fc4dae6f182519ccea983cb0dad3b46a 100644
--- a/chrome/browser/safe_browsing/safe_browsing_database.h
+++ b/chrome/browser/safe_browsing/safe_browsing_database.h
@@ -290,39 +290,39 @@ class SafeBrowsingDatabaseNew : public SafeBrowsingDatabase {
virtual ~SafeBrowsingDatabaseNew();
// Implement SafeBrowsingDatabase interface.
- virtual void Init(const base::FilePath& filename) OVERRIDE;
- virtual bool ResetDatabase() OVERRIDE;
+ virtual void Init(const base::FilePath& filename) override;
+ virtual bool ResetDatabase() override;
virtual bool ContainsBrowseUrl(
const GURL& url,
std::vector<SBPrefix>* prefix_hits,
- std::vector<SBFullHashResult>* cache_hits) OVERRIDE;
+ std::vector<SBFullHashResult>* cache_hits) override;
virtual bool ContainsDownloadUrl(const std::vector<GURL>& urls,
- std::vector<SBPrefix>* prefix_hits) OVERRIDE;
- virtual bool ContainsCsdWhitelistedUrl(const GURL& url) OVERRIDE;
- virtual bool ContainsDownloadWhitelistedUrl(const GURL& url) OVERRIDE;
+ std::vector<SBPrefix>* prefix_hits) override;
+ virtual bool ContainsCsdWhitelistedUrl(const GURL& url) override;
+ virtual bool ContainsDownloadWhitelistedUrl(const GURL& url) override;
virtual bool ContainsDownloadWhitelistedString(
- const std::string& str) OVERRIDE;
+ const std::string& str) override;
virtual bool ContainsExtensionPrefixes(
const std::vector<SBPrefix>& prefixes,
- std::vector<SBPrefix>* prefix_hits) OVERRIDE;
- virtual bool ContainsSideEffectFreeWhitelistUrl(const GURL& url) OVERRIDE;
- virtual bool ContainsMalwareIP(const std::string& ip_address) OVERRIDE;
- virtual bool UpdateStarted(std::vector<SBListChunkRanges>* lists) OVERRIDE;
+ std::vector<SBPrefix>* prefix_hits) override;
+ virtual bool ContainsSideEffectFreeWhitelistUrl(const GURL& url) override;
+ virtual bool ContainsMalwareIP(const std::string& ip_address) override;
+ virtual bool UpdateStarted(std::vector<SBListChunkRanges>* lists) override;
virtual void InsertChunks(const std::string& list_name,
- const std::vector<SBChunkData*>& chunks) OVERRIDE;
+ const std::vector<SBChunkData*>& chunks) override;
virtual void DeleteChunks(
- const std::vector<SBChunkDelete>& chunk_deletes) OVERRIDE;
- virtual void UpdateFinished(bool update_succeeded) OVERRIDE;
+ const std::vector<SBChunkDelete>& chunk_deletes) override;
+ virtual void UpdateFinished(bool update_succeeded) override;
virtual void CacheHashResults(
const std::vector<SBPrefix>& prefixes,
const std::vector<SBFullHashResult>& full_hits,
- const base::TimeDelta& cache_lifetime) OVERRIDE;
+ const base::TimeDelta& cache_lifetime) override;
// Returns the value of malware_kill_switch_;
- virtual bool IsMalwareIPMatchKillSwitchOn() OVERRIDE;
+ virtual bool IsMalwareIPMatchKillSwitchOn() override;
// Returns true if the CSD whitelist has everything whitelisted.
- virtual bool IsCsdWhitelistKillSwitchOn() OVERRIDE;
+ virtual bool IsCsdWhitelistKillSwitchOn() override;
private:
friend class SafeBrowsingDatabaseTest;

Powered by Google App Engine
This is Rietveld 408576698