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

Unified Diff: content/child/indexed_db/webidbcursor_impl_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
« no previous file with comments | « content/child/indexed_db/indexed_db_message_filter.h ('k') | content/child/npapi/np_channel_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/indexed_db/webidbcursor_impl_unittest.cc
diff --git a/content/child/indexed_db/webidbcursor_impl_unittest.cc b/content/child/indexed_db/webidbcursor_impl_unittest.cc
index 2ff4617c7810ce8ab6c174e30addfb513ba56c29..61a0c26cc83949b8201b6546a1fab272e06128c8 100644
--- a/content/child/indexed_db/webidbcursor_impl_unittest.cc
+++ b/content/child/indexed_db/webidbcursor_impl_unittest.cc
@@ -40,7 +40,7 @@ class MockDispatcher : public IndexedDBDispatcher {
virtual void RequestIDBCursorPrefetch(int n,
WebIDBCallbacks* callbacks,
- int32 ipc_cursor_id) OVERRIDE {
+ int32 ipc_cursor_id) override {
++prefetch_calls_;
last_prefetch_count_ = n;
callbacks_.reset(callbacks);
@@ -48,7 +48,7 @@ class MockDispatcher : public IndexedDBDispatcher {
virtual void RequestIDBCursorPrefetchReset(int used_prefetches,
int unused_prefetches,
- int32 ipc_cursor_id) OVERRIDE {
+ int32 ipc_cursor_id) override {
++reset_calls_;
last_used_count_ = used_prefetches;
}
@@ -56,7 +56,7 @@ class MockDispatcher : public IndexedDBDispatcher {
virtual void RequestIDBCursorAdvance(unsigned long count,
WebIDBCallbacks* callbacks,
int32 ipc_cursor_id,
- int64 transaction_id) OVERRIDE {
+ int64 transaction_id) override {
++advance_calls_;
callbacks_.reset(callbacks);
}
@@ -65,12 +65,12 @@ class MockDispatcher : public IndexedDBDispatcher {
const IndexedDBKey& primary_key,
WebIDBCallbacks* callbacks,
int32 ipc_cursor_id,
- int64 transaction_id) OVERRIDE {
+ int64 transaction_id) override {
++continue_calls_;
callbacks_.reset(callbacks);
}
- virtual void CursorDestroyed(int32 ipc_cursor_id) OVERRIDE {
+ virtual void CursorDestroyed(int32 ipc_cursor_id) override {
destroyed_cursor_id_ = ipc_cursor_id;
}
@@ -102,7 +102,7 @@ class MockContinueCallbacks : public WebIDBCallbacks {
virtual void onSuccess(const WebIDBKey& key,
const WebIDBKey& primaryKey,
const WebData& value,
- const WebVector<WebBlobInfo>& webBlobInfo) OVERRIDE {
+ const WebVector<WebBlobInfo>& webBlobInfo) override {
if (key_)
*key_ = IndexedDBKeyBuilder::Build(key);
if (webBlobInfo_)
« no previous file with comments | « content/child/indexed_db/indexed_db_message_filter.h ('k') | content/child/npapi/np_channel_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698