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

Unified Diff: ui/app_list/search/dictionary_data_store.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/pagination_model_unittest.cc ('k') | ui/app_list/search/history.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/search/dictionary_data_store.h
diff --git a/ui/app_list/search/dictionary_data_store.h b/ui/app_list/search/dictionary_data_store.h
index 6ebe1bf5afb68f5fd863df178208c166231128e4..1a882c13ac37fd9c15ae2d12a3b4644f94f58a89 100644
--- a/ui/app_list/search/dictionary_data_store.h
+++ b/ui/app_list/search/dictionary_data_store.h
@@ -54,13 +54,13 @@ class APP_LIST_EXPORT DictionaryDataStore
private:
friend class base::RefCountedThreadSafe<DictionaryDataStore>;
- virtual ~DictionaryDataStore();
+ ~DictionaryDataStore() override;
// Reads data from backing file.
scoped_ptr<base::DictionaryValue> LoadOnBlockingPool();
// ImportantFileWriter::DataSerializer overrides:
- virtual bool SerializeData(std::string* data) override;
+ bool SerializeData(std::string* data) override;
base::FilePath data_file_;
scoped_refptr<base::SequencedTaskRunner> file_task_runner_;
« no previous file with comments | « ui/app_list/pagination_model_unittest.cc ('k') | ui/app_list/search/history.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698