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

Unified Diff: components/leveldb_proto/proto_database_impl.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/leveldb_proto/proto_database_impl.h
diff --git a/components/leveldb_proto/proto_database_impl.h b/components/leveldb_proto/proto_database_impl.h
index cfa9bd6ac975b09a511e8b07cb62b3512897ce84..cc5622122c3b29e76d88e5d53bd13b97985135ae 100644
--- a/components/leveldb_proto/proto_database_impl.h
+++ b/components/leveldb_proto/proto_database_impl.h
@@ -41,13 +41,13 @@ class ProtoDatabaseImpl : public ProtoDatabase<T> {
// TODO(cjhopman): Perhaps Init() shouldn't be exposed to users and not just
// part of the constructor
virtual void Init(const base::FilePath& database_dir,
- typename ProtoDatabase<T>::InitCallback callback) OVERRIDE;
+ typename ProtoDatabase<T>::InitCallback callback) override;
virtual void UpdateEntries(
scoped_ptr<typename ProtoDatabase<T>::KeyEntryVector> entries_to_save,
scoped_ptr<KeyVector> keys_to_remove,
- typename ProtoDatabase<T>::UpdateCallback callback) OVERRIDE;
+ typename ProtoDatabase<T>::UpdateCallback callback) override;
virtual void LoadEntries(
- typename ProtoDatabase<T>::LoadCallback callback) OVERRIDE;
+ typename ProtoDatabase<T>::LoadCallback callback) override;
// Allow callers to provide their own Database implementation.
void InitWithDatabase(scoped_ptr<LevelDB> database,

Powered by Google App Engine
This is Rietveld 408576698