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/extensions/activity_log/hashed_ad_network_database.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/extensions/activity_log/hashed_ad_network_database.h
diff --git a/chrome/browser/extensions/activity_log/hashed_ad_network_database.h b/chrome/browser/extensions/activity_log/hashed_ad_network_database.h
index c3dad05c162003b6ddb8444bd7988dec62b8b0a5..a281bd902952f2e6011a213a8a0365800328af2f 100644
--- a/chrome/browser/extensions/activity_log/hashed_ad_network_database.h
+++ b/chrome/browser/extensions/activity_log/hashed_ad_network_database.h
@@ -14,7 +14,7 @@ namespace extensions {
class HashedAdNetworkDatabase : public AdNetworkDatabase {
public:
HashedAdNetworkDatabase();
- virtual ~HashedAdNetworkDatabase();
+ ~HashedAdNetworkDatabase() override;
void set_entries_for_testing(const char** entries, int num_entries) {
entries_ = entries;
@@ -23,7 +23,7 @@ class HashedAdNetworkDatabase : public AdNetworkDatabase {
private:
// AdNetworkDatabase implementation.
- virtual bool IsAdNetwork(const GURL& url) const override;
+ bool IsAdNetwork(const GURL& url) const override;
// Points to the array of hash entries. In practice, this is always set to
// kHashedAdNetworks, but is exposed via set_entries_for_testing().
« no previous file with comments | « chrome/browser/extensions/activity_log/fullstream_ui_policy.h ('k') | chrome/browser/extensions/activity_log/uma_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698