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

Unified Diff: content/child/indexed_db/webidbcursor_impl_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/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 95d187b7f5307787d3db3e1960d6a20a00a8ad96..c7908ffa1d093756d3882f9fa14294fdf77c82f8 100644
--- a/content/child/indexed_db/webidbcursor_impl_unittest.cc
+++ b/content/child/indexed_db/webidbcursor_impl_unittest.cc
@@ -99,10 +99,10 @@ class MockContinueCallbacks : public WebIDBCallbacks {
WebVector<WebBlobInfo>* webBlobInfo = 0)
: key_(key), web_blob_info_(webBlobInfo) {}
- virtual void onSuccess(const WebIDBKey& key,
- const WebIDBKey& primaryKey,
- const WebData& value,
- const WebVector<WebBlobInfo>& webBlobInfo) override {
+ void onSuccess(const WebIDBKey& key,
+ const WebIDBKey& primaryKey,
+ const WebData& value,
+ const WebVector<WebBlobInfo>& webBlobInfo) override {
if (key_)
*key_ = IndexedDBKeyBuilder::Build(key);
if (web_blob_info_)
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher_unittest.cc ('k') | content/child/npapi/plugin_url_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698