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

Unified Diff: content/browser/indexed_db/leveldb/leveldb_iterator_impl.h

Issue 602883003: Replacing the OVERRIDE with override and FINAL with final in content/browser/indexed_db (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: content/browser/indexed_db/leveldb/leveldb_iterator_impl.h
diff --git a/content/browser/indexed_db/leveldb/leveldb_iterator_impl.h b/content/browser/indexed_db/leveldb/leveldb_iterator_impl.h
index 147a7bbfb87bdc25dce3b5eebb2c3d3d99825188..be0532781538444a43d1ec6507b7ce4b0b576cd5 100644
--- a/content/browser/indexed_db/leveldb/leveldb_iterator_impl.h
+++ b/content/browser/indexed_db/leveldb/leveldb_iterator_impl.h
@@ -15,13 +15,13 @@ namespace content {
class CONTENT_EXPORT LevelDBIteratorImpl : public content::LevelDBIterator {
public:
virtual ~LevelDBIteratorImpl();
- virtual bool IsValid() const OVERRIDE;
- virtual leveldb::Status SeekToLast() OVERRIDE;
- virtual leveldb::Status Seek(const base::StringPiece& target) OVERRIDE;
- virtual leveldb::Status Next() OVERRIDE;
- virtual leveldb::Status Prev() OVERRIDE;
- virtual base::StringPiece Key() const OVERRIDE;
- virtual base::StringPiece Value() const OVERRIDE;
+ virtual bool IsValid() const override;
+ virtual leveldb::Status SeekToLast() override;
+ virtual leveldb::Status Seek(const base::StringPiece& target) override;
+ virtual leveldb::Status Next() override;
+ virtual leveldb::Status Prev() override;
+ virtual base::StringPiece Key() const override;
+ virtual base::StringPiece Value() const override;
protected:
explicit LevelDBIteratorImpl(scoped_ptr<leveldb::Iterator> iterator);
« no previous file with comments | « content/browser/indexed_db/leveldb/leveldb_database.h ('k') | content/browser/indexed_db/leveldb/leveldb_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698