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

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

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (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 33b98f25149388bac0dd14dea1b0f48e616e70ba..01295cb478d8298cc4ba24fdbc49f9f89ffc56fd 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 {
+ virtual bool Send(IPC::Message* msg) override {
delete msg;
return true;
}
@@ -143,12 +143,12 @@ class CursorCallbacks : public WebIDBCallbacks {
: cursor_(cursor) {}
virtual void onSuccess(const WebData&,
- const WebVector<WebBlobInfo>&) OVERRIDE {}
+ const WebVector<WebBlobInfo>&) override {}
virtual void onSuccess(WebIDBCursor* cursor,
const WebIDBKey& key,
const WebIDBKey& primaryKey,
const WebData& value,
- const WebVector<WebBlobInfo>&) OVERRIDE {
+ const WebVector<WebBlobInfo>&) override {
cursor_->reset(cursor);
}
@@ -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_; }
+ virtual 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