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

Unified Diff: chrome/browser/autocomplete/bookmark_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/bookmark_provider.h
diff --git a/chrome/browser/autocomplete/bookmark_provider.h b/chrome/browser/autocomplete/bookmark_provider.h
index ad701ccd120da9b2f73c817f52e88f509156dbfd..8d42ab5ffdfc56490f169ccb03b33f1ad9d6f39c 100644
--- a/chrome/browser/autocomplete/bookmark_provider.h
+++ b/chrome/browser/autocomplete/bookmark_provider.h
@@ -34,8 +34,7 @@ class BookmarkProvider : public AutocompleteProvider {
// When |minimal_changes| is true short circuit any additional searching and
// leave the previous matches for this provider unchanged, otherwise perform
// a complete search for |input| across all bookmark titles.
- virtual void Start(const AutocompleteInput& input,
- bool minimal_changes) override;
+ void Start(const AutocompleteInput& input, bool minimal_changes) override;
// Sets the BookmarkModel for unit tests.
void set_bookmark_model_for_testing(BookmarkModel* bookmark_model) {
@@ -45,7 +44,7 @@ class BookmarkProvider : public AutocompleteProvider {
private:
FRIEND_TEST_ALL_PREFIXES(BookmarkProviderTest, InlineAutocompletion);
- virtual ~BookmarkProvider();
+ ~BookmarkProvider() override;
// Performs the actual matching of |input| over the bookmarks and fills in
// |matches_|.
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_provider_unittest.cc ('k') | chrome/browser/autocomplete/builtin_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698