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

Unified Diff: chrome/browser/ui/login/login_interstitial_delegate.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/ui/login/login_interstitial_delegate.h
diff --git a/chrome/browser/ui/login/login_interstitial_delegate.h b/chrome/browser/ui/login/login_interstitial_delegate.h
index d09626e402ce64bd9511b9484d54f22b75f2abd9..b1f6537800f7f4dd61876d1c1e8fa7f69f5d4c6a 100644
--- a/chrome/browser/ui/login/login_interstitial_delegate.h
+++ b/chrome/browser/ui/login/login_interstitial_delegate.h
@@ -30,13 +30,13 @@ class LoginInterstitialDelegate : public content::InterstitialPageDelegate {
const GURL& request_url,
base::Closure& callback);
- virtual ~LoginInterstitialDelegate();
+ ~LoginInterstitialDelegate() override;
// content::InterstitialPageDelegate:
- virtual void CommandReceived(const std::string& command) override;
+ void CommandReceived(const std::string& command) override;
protected:
- virtual std::string GetHTMLContents() override;
+ std::string GetHTMLContents() override;
private:
base::Closure callback_;

Powered by Google App Engine
This is Rietveld 408576698