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

Unified Diff: chrome/browser/predictors/predictor_database.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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/predictors/predictor_database.h
diff --git a/chrome/browser/predictors/predictor_database.h b/chrome/browser/predictors/predictor_database.h
index 7d65b02d24df3269cadfc679c088de7a34ee6b09..43e95a90feb1db166fdaf5ef8c4cd5de664d53f2 100644
--- a/chrome/browser/predictors/predictor_database.h
+++ b/chrome/browser/predictors/predictor_database.h
@@ -24,7 +24,7 @@ class ResourcePrefetchPredictorTables;
class PredictorDatabase : public KeyedService {
public:
explicit PredictorDatabase(Profile* profile);
- virtual ~PredictorDatabase();
+ ~PredictorDatabase() override;
scoped_refptr<AutocompleteActionPredictorTable> autocomplete_table();
scoped_refptr<ResourcePrefetchPredictorTables> resource_prefetch_tables();
@@ -35,7 +35,7 @@ class PredictorDatabase : public KeyedService {
private:
// KeyedService
- virtual void Shutdown() override;
+ void Shutdown() override;
scoped_refptr<PredictorDatabaseInternal> db_;
« no previous file with comments | « chrome/browser/predictors/logged_in_predictor_table.h ('k') | chrome/browser/predictors/predictor_database_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698