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

Unified Diff: chrome/browser/predictors/autocomplete_action_predictor.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/autocomplete_action_predictor.h
diff --git a/chrome/browser/predictors/autocomplete_action_predictor.h b/chrome/browser/predictors/autocomplete_action_predictor.h
index 5c799defff5205d392213e33a7c644e70e322d33..e75cb082e189435082c1ff9cbdb99a689d53b643 100644
--- a/chrome/browser/predictors/autocomplete_action_predictor.h
+++ b/chrome/browser/predictors/autocomplete_action_predictor.h
@@ -71,7 +71,7 @@ class AutocompleteActionPredictor
};
explicit AutocompleteActionPredictor(Profile* profile);
- virtual ~AutocompleteActionPredictor();
+ ~AutocompleteActionPredictor() override;
// Registers an AutocompleteResult for a given |user_text|. This will be used
// when the user navigates from the Omnibox to determine early opportunities
@@ -154,9 +154,9 @@ class AutocompleteActionPredictor
static const int kMaximumDaysToKeepEntry;
// 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;
// The first step in initializing the predictor is accessing the database and
// building the local cache. This should be delayed until after critical DB

Powered by Google App Engine
This is Rietveld 408576698