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

Unified Diff: content/browser/database_quota_client_unittest.cc

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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/browser/cross_site_transfer_browsertest.cc ('k') | content/browser/database_tracker_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/database_quota_client_unittest.cc
diff --git a/content/browser/database_quota_client_unittest.cc b/content/browser/database_quota_client_unittest.cc
index c458a9aa8738fdf65f56d79bdfa3a97e2510d9af..ca31e5085cef6e794117cc37df9f47f0d8dfc474 100644
--- a/content/browser/database_quota_client_unittest.cc
+++ b/content/browser/database_quota_client_unittest.cc
@@ -38,7 +38,7 @@ class MockDatabaseTracker : public DatabaseTracker {
virtual bool GetOriginInfo(
const std::string& origin_identifier,
- OriginInfo* info) OVERRIDE {
+ OriginInfo* info) override {
std::map<GURL, MockOriginInfo>::const_iterator found =
mock_origin_infos_.find(
storage::GetOriginFromIdentifier(origin_identifier));
@@ -49,7 +49,7 @@ class MockDatabaseTracker : public DatabaseTracker {
}
virtual bool GetAllOriginIdentifiers(
- std::vector<std::string>* origins_identifiers) OVERRIDE {
+ std::vector<std::string>* origins_identifiers) override {
std::map<GURL, MockOriginInfo>::const_iterator iter;
for (iter = mock_origin_infos_.begin();
iter != mock_origin_infos_.end();
@@ -60,7 +60,7 @@ class MockDatabaseTracker : public DatabaseTracker {
}
virtual bool GetAllOriginsInfo(
- std::vector<OriginInfo>* origins_info) OVERRIDE {
+ std::vector<OriginInfo>* origins_info) override {
std::map<GURL, MockOriginInfo>::const_iterator iter;
for (iter = mock_origin_infos_.begin();
iter != mock_origin_infos_.end();
@@ -72,7 +72,7 @@ class MockDatabaseTracker : public DatabaseTracker {
virtual int DeleteDataForOrigin(
const std::string& origin_identifier,
- const net::CompletionCallback& callback) OVERRIDE {
+ const net::CompletionCallback& callback) override {
++delete_called_count_;
if (async_delete()) {
base::MessageLoopProxy::current()->PostTask(
« no previous file with comments | « content/browser/cross_site_transfer_browsertest.cc ('k') | content/browser/database_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698