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

Unified Diff: content/child/indexed_db/indexed_db_dispatcher_unittest.cc

Issue 671663002: Standardize usage of virtual/override/final in content/ (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/child/indexed_db/indexed_db_dispatcher_unittest.cc
diff --git a/content/child/indexed_db/indexed_db_dispatcher_unittest.cc b/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
index 01295cb478d8298cc4ba24fdbc49f9f89ffc56fd..86601f1fa975cfd7055ca712bdbc912823ea8efb 100644
--- a/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
+++ b/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
@@ -49,7 +49,7 @@ class MockDispatcher : public IndexedDBDispatcher {
explicit MockDispatcher(ThreadSafeSender* sender)
: IndexedDBDispatcher(sender) {}
- virtual bool Send(IPC::Message* msg) override {
+ bool Send(IPC::Message* msg) override {
delete msg;
return true;
}
@@ -257,7 +257,7 @@ class MockCursor : public WebIDBCursorImpl {
reset_count_(0) {}
// This method is virtual so it can be overridden in unit tests.
- virtual void ResetPrefetchCache() override { ++reset_count_; }
+ void ResetPrefetchCache() override { ++reset_count_; }
int reset_count() const { return reset_count_; }
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.h ('k') | content/child/indexed_db/indexed_db_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698