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

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

Issue 665253002: Standardize usage of virtual/override/final in chrome/browser/download/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/download/download_request_infobar_delegate_unittest.cc
diff --git a/chrome/browser/download/download_request_infobar_delegate_unittest.cc b/chrome/browser/download/download_request_infobar_delegate_unittest.cc
index f9fb557650826be26608550973855f73136c4312..2506a31def865a389f7005b5f20df3d953e4b5b9 100644
--- a/chrome/browser/download/download_request_infobar_delegate_unittest.cc
+++ b/chrome/browser/download/download_request_infobar_delegate_unittest.cc
@@ -13,12 +13,12 @@
class MockTabDownloadState : public DownloadRequestLimiter::TabDownloadState {
public:
MockTabDownloadState();
- virtual ~MockTabDownloadState();
+ ~MockTabDownloadState() override;
// DownloadRequestLimiter::TabDownloadState:
- virtual void Cancel() override;
- virtual void Accept() override;
- virtual void CancelOnce() override;
+ void Cancel() override;
+ void Accept() override;
+ void CancelOnce() override;
ConfirmInfoBarDelegate* infobar_delegate() { return infobar_delegate_.get(); }
void delete_infobar_delegate() { infobar_delegate_.reset(); }
« no previous file with comments | « chrome/browser/download/download_request_infobar_delegate.h ('k') | chrome/browser/download/download_request_limiter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698