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

Unified Diff: ui/app_list/search/history.h

Issue 667923002: Standardize usage of virtual/override/final in ui/ (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 | « ui/app_list/search/dictionary_data_store.h ('k') | ui/app_list/search/mixer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/search/history.h
diff --git a/ui/app_list/search/history.h b/ui/app_list/search/history.h
index 2a87813b3f265968beefc491a6c6232add69a5a6..4026ec10616324be3035872fc5f725ee187be1fc 100644
--- a/ui/app_list/search/history.h
+++ b/ui/app_list/search/history.h
@@ -35,7 +35,7 @@ class APP_LIST_EXPORT History : public KeyedService,
public HistoryDataObserver {
public:
explicit History(scoped_refptr<HistoryDataStore> store);
- virtual ~History();
+ ~History() override;
// Returns true if the service is ready.
bool IsReady() const;
@@ -51,7 +51,7 @@ class APP_LIST_EXPORT History : public KeyedService,
friend class app_list::test::SearchHistoryTest;
// HistoryDataObserver overrides:
- virtual void OnHistoryDataLoadedFromStore() override;
+ void OnHistoryDataLoadedFromStore() override;
scoped_ptr<HistoryData> data_;
scoped_refptr<HistoryDataStore> store_;
« no previous file with comments | « ui/app_list/search/dictionary_data_store.h ('k') | ui/app_list/search/mixer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698