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

Unified Diff: chrome/browser/safe_browsing/download_feedback_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/download_feedback_service_unittest.cc
diff --git a/chrome/browser/safe_browsing/download_feedback_service_unittest.cc b/chrome/browser/safe_browsing/download_feedback_service_unittest.cc
index 577ba1e9c3b755c678b8eb53f2e2b5202f11d925..e545b8d12ef2d3d73403ba31c5a53fec5225d14f 100644
--- a/chrome/browser/safe_browsing/download_feedback_service_unittest.cc
+++ b/chrome/browser/safe_browsing/download_feedback_service_unittest.cc
@@ -44,16 +44,16 @@ class FakeDownloadFeedback : public DownloadFeedback {
deletion_callback_.Run();
}
- virtual void Start(const base::Closure& finish_callback) OVERRIDE {
+ virtual void Start(const base::Closure& finish_callback) override {
start_called_ = true;
finish_callback_ = finish_callback;
}
- virtual const std::string& GetPingRequestForTesting() const OVERRIDE {
+ virtual const std::string& GetPingRequestForTesting() const override {
return ping_request_;
}
- virtual const std::string& GetPingResponseForTesting() const OVERRIDE {
+ virtual const std::string& GetPingResponseForTesting() const override {
return ping_response_;
}
@@ -86,7 +86,7 @@ class FakeDownloadFeedbackFactory : public DownloadFeedbackFactory {
base::TaskRunner* file_task_runner,
const base::FilePath& file_path,
const std::string& ping_request,
- const std::string& ping_response) OVERRIDE {
+ const std::string& ping_response) override {
FakeDownloadFeedback* feedback = new FakeDownloadFeedback(
request_context_getter,
file_task_runner,
@@ -139,12 +139,12 @@ class DownloadFeedbackServiceTest : public testing::Test {
new net::TestURLRequestContextGetter(io_task_runner_)) {
}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
DownloadFeedback::RegisterFactory(&download_feedback_factory_);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
DownloadFeedback::RegisterFactory(NULL);
}
« no previous file with comments | « chrome/browser/safe_browsing/download_feedback.cc ('k') | chrome/browser/safe_browsing/download_feedback_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698