| Index: chrome/browser/extensions/blacklist.h
|
| diff --git a/chrome/browser/extensions/blacklist.h b/chrome/browser/extensions/blacklist.h
|
| index 9d8f00e1d4a4b54fc8e8666dbc89e0dd275e8cff..4b9d0bfdea6c44666ace81ca9429278e68b496f2 100644
|
| --- a/chrome/browser/extensions/blacklist.h
|
| +++ b/chrome/browser/extensions/blacklist.h
|
| @@ -69,7 +69,7 @@ class Blacklist : public content::NotificationObserver,
|
|
|
| explicit Blacklist(ExtensionPrefs* prefs);
|
|
|
| - virtual ~Blacklist();
|
| + ~Blacklist() override;
|
|
|
| // From the set of extension IDs passed in via |ids|, asynchronously checks
|
| // which are blacklisted and includes them in the resulting map passed
|
| @@ -112,9 +112,9 @@ class Blacklist : public content::NotificationObserver,
|
| static scoped_refptr<SafeBrowsingDatabaseManager> GetDatabaseManager();
|
|
|
| // content::NotificationObserver
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| void GetBlacklistStateForIDs(const GetBlacklistedIDsCallback& callback,
|
| const std::set<std::string>& blacklisted_ids);
|
|
|