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

Unified Diff: chrome/browser/extensions/fake_safe_browsing_database_manager.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
« no previous file with comments | « chrome/browser/extensions/external_provider_impl.h ('k') | chrome/browser/extensions/favicon_downloader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/fake_safe_browsing_database_manager.h
diff --git a/chrome/browser/extensions/fake_safe_browsing_database_manager.h b/chrome/browser/extensions/fake_safe_browsing_database_manager.h
index d7ff84eb085ea271ac51e3f6fec26cb77d09fbbe..b890c24c227f47ba6e6b14714d51ee0e0a5c5684 100644
--- a/chrome/browser/extensions/fake_safe_browsing_database_manager.h
+++ b/chrome/browser/extensions/fake_safe_browsing_database_manager.h
@@ -23,8 +23,8 @@ class FakeSafeBrowsingDatabaseManager : public SafeBrowsingDatabaseManager {
// Returns true if synchronously safe, false if not in which case the unsafe
// IDs taken from |unsafe_ids_| are passed to to |client| on the current
// message loop.
- virtual bool CheckExtensionIDs(const std::set<std::string>& extension_ids,
- Client* client) override;
+ bool CheckExtensionIDs(const std::set<std::string>& extension_ids,
+ Client* client) override;
// Return |this| to chain together SetUnsafe(...).NotifyUpdate() conveniently.
FakeSafeBrowsingDatabaseManager& Enable();
@@ -47,7 +47,7 @@ class FakeSafeBrowsingDatabaseManager : public SafeBrowsingDatabaseManager {
void NotifyUpdate();
private:
- virtual ~FakeSafeBrowsingDatabaseManager();
+ ~FakeSafeBrowsingDatabaseManager() override;
// Runs client->SafeBrowsingResult(result).
void OnSafeBrowsingResult(scoped_ptr<SafeBrowsingCheck> result,
« no previous file with comments | « chrome/browser/extensions/external_provider_impl.h ('k') | chrome/browser/extensions/favicon_downloader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698