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

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

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. Created 5 years, 8 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 4f29998f02ce0c4894eddd78ea882e93c6bc130b..04a47e71f3a40c25d76a748534f19cf4fd645b4b 100644
--- a/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
+++ b/content/child/indexed_db/indexed_db_dispatcher_unittest.cc
@@ -140,13 +140,12 @@ class CursorCallbacks : public WebIDBCallbacks {
explicit CursorCallbacks(scoped_ptr<WebIDBCursor>* cursor)
: cursor_(cursor) {}
- virtual void onSuccess(const WebData&,
- const WebVector<WebBlobInfo>&) override {}
- virtual void onSuccess(WebIDBCursor* cursor,
- const WebIDBKey& key,
- const WebIDBKey& primaryKey,
- const WebData& value,
- const WebVector<WebBlobInfo>&) override {
+ void onSuccess(const WebData&, const WebVector<WebBlobInfo>&) override {}
+ void onSuccess(WebIDBCursor* cursor,
+ const WebIDBKey& key,
+ const WebIDBKey& primaryKey,
+ const WebData& value,
+ const WebVector<WebBlobInfo>&) override {
cursor_->reset(cursor);
}
« no previous file with comments | « content/child/blink_platform_impl_unittest.cc ('k') | content/child/indexed_db/webidbcursor_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698