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

Unified Diff: content/browser/indexed_db/leveldb/leveldb_unittest.cc

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_unittest.cc
diff --git a/content/browser/indexed_db/leveldb/leveldb_unittest.cc b/content/browser/indexed_db/leveldb/leveldb_unittest.cc
index b0c70fe6af676448e1e57223e3dac411f5f44958..8fe9023fb943ef5d386ab3b88f2ccdc066c7006f 100644
--- a/content/browser/indexed_db/leveldb/leveldb_unittest.cc
+++ b/content/browser/indexed_db/leveldb/leveldb_unittest.cc
@@ -26,11 +26,11 @@ namespace {
class SimpleComparator : public LevelDBComparator {
public:
virtual int Compare(const base::StringPiece& a,
- const base::StringPiece& b) const OVERRIDE {
+ const base::StringPiece& b) const override {
size_t len = std::min(a.size(), b.size());
return memcmp(a.begin(), b.begin(), len);
}
- virtual const char* Name() const OVERRIDE { return "temp_comparator"; }
+ virtual const char* Name() const override { return "temp_comparator"; }
};
} // namespace

Powered by Google App Engine
This is Rietveld 408576698