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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc
diff --git a/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc b/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc
index c7611841e98c77b821f945d72d98221f5f65a1ca..6435011e63a3ae5bb4043678d7d7d34d2b9337cd 100644
--- a/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc
+++ b/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc
@@ -75,14 +75,14 @@ class IncidentReportingServiceTest : public testing::Test {
}
protected:
- virtual void OnProfileAdded(Profile* profile) OVERRIDE {
+ virtual void OnProfileAdded(Profile* profile) override {
pre_profile_add_callback_.Run(profile);
safe_browsing::IncidentReportingService::OnProfileAdded(profile);
}
virtual scoped_ptr<safe_browsing::LastDownloadFinder> CreateDownloadFinder(
const safe_browsing::LastDownloadFinder::LastDownloadCallback& callback)
- OVERRIDE {
+ override {
return create_download_finder_callback_.Run(callback);
}
@@ -90,7 +90,7 @@ class IncidentReportingServiceTest : public testing::Test {
const safe_browsing::IncidentReportUploader::OnResultCallback& callback,
const scoped_refptr<net::URLRequestContextGetter>&
request_context_getter,
- const safe_browsing::ClientIncidentReport& report) OVERRIDE {
+ const safe_browsing::ClientIncidentReport& report) override {
return start_upload_callback_.Run(callback, report);
}
@@ -175,7 +175,7 @@ class IncidentReportingServiceTest : public testing::Test {
uploader_destroyed_(),
delayed_analysis_ran_() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
testing::Test::SetUp();
ASSERT_TRUE(profile_manager_.SetUp());
}

Powered by Google App Engine
This is Rietveld 408576698