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

Unified Diff: chrome/browser/autocomplete/history_provider.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/autocomplete/history_provider.h
diff --git a/chrome/browser/autocomplete/history_provider.h b/chrome/browser/autocomplete/history_provider.h
index d00703c1e7ad1fc383afc21344901171b62c2e3d..935dc5ae386f55e2885c303be03583c407f95d6b 100644
--- a/chrome/browser/autocomplete/history_provider.h
+++ b/chrome/browser/autocomplete/history_provider.h
@@ -17,7 +17,7 @@ struct AutocompleteMatch;
// provides functions useful to all derived classes.
class HistoryProvider : public AutocompleteProvider {
public:
- virtual void DeleteMatch(const AutocompleteMatch& match) override;
+ void DeleteMatch(const AutocompleteMatch& match) override;
// Returns true if inline autocompletion should be prevented for URL-like
// input. This method returns true if input.prevent_inline_autocomplete()
@@ -26,7 +26,7 @@ class HistoryProvider : public AutocompleteProvider {
protected:
HistoryProvider(Profile* profile, AutocompleteProvider::Type type);
- virtual ~HistoryProvider();
+ ~HistoryProvider() override;
// Finds and removes the match from the current collection of matches and
// backing data.

Powered by Google App Engine
This is Rietveld 408576698