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

Unified Diff: chrome/browser/download/download_browsertest.cc

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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: chrome/browser/download/download_browsertest.cc
diff --git a/chrome/browser/download/download_browsertest.cc b/chrome/browser/download/download_browsertest.cc
index cc4bb5984dea7468d05cb1157d9826e641ece2cf..39caea3ca4b585e2fd71affb68ebae2e15149909 100644
--- a/chrome/browser/download/download_browsertest.cc
+++ b/chrome/browser/download/download_browsertest.cc
@@ -3427,9 +3427,9 @@ class DisableSafeBrowsingOnInProgressDownload
final_state_seen_(false) {
Init();
}
- virtual ~DisableSafeBrowsingOnInProgressDownload() {}
+ ~DisableSafeBrowsingOnInProgressDownload() override {}
- virtual bool IsDownloadInFinalState(DownloadItem* download) override {
+ bool IsDownloadInFinalState(DownloadItem* download) override {
if (download->GetState() != DownloadItem::IN_PROGRESS ||
download->GetTargetFilePath().empty())
return false;

Powered by Google App Engine
This is Rietveld 408576698