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

Unified Diff: content/browser/indexed_db/indexed_db_backing_store.h

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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/indexed_db_backing_store.h
diff --git a/content/browser/indexed_db/indexed_db_backing_store.h b/content/browser/indexed_db/indexed_db_backing_store.h
index 1e72d805743f40e905d82409d1446dc6acada31f..a15b2372a6b1761f25df1e9de1bdf3e173900b2f 100644
--- a/content/browser/indexed_db/indexed_db_backing_store.h
+++ b/content/browser/indexed_db/indexed_db_backing_store.h
@@ -58,9 +58,9 @@ class CONTENT_EXPORT IndexedDBBackingStore
public:
class CONTENT_EXPORT Comparator : public LevelDBComparator {
public:
- virtual int Compare(const base::StringPiece& a,
- const base::StringPiece& b) const override;
- virtual const char* Name() const override;
+ int Compare(const base::StringPiece& a,
+ const base::StringPiece& b) const override;
+ const char* Name() const override;
};
class CONTENT_EXPORT RecordIdentifier {

Powered by Google App Engine
This is Rietveld 408576698