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

Unified Diff: chrome/browser/supervised_user/supervised_user_interstitial.h

Issue 652473004: Standardize usage of virtual/override/final in chrome/browser/supervised_user/ (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/supervised_user/supervised_user_interstitial.h
diff --git a/chrome/browser/supervised_user/supervised_user_interstitial.h b/chrome/browser/supervised_user/supervised_user_interstitial.h
index b3f73684b63bbce2f6883e590b29493e9e457bfb..a55190026b9bd3b8b8d3e8a0cbe264ed79bffb31 100644
--- a/chrome/browser/supervised_user/supervised_user_interstitial.h
+++ b/chrome/browser/supervised_user/supervised_user_interstitial.h
@@ -34,18 +34,18 @@ class SupervisedUserInterstitial : public content::InterstitialPageDelegate,
SupervisedUserInterstitial(content::WebContents* web_contents,
const GURL& url,
const base::Callback<void(bool)>& callback);
- virtual ~SupervisedUserInterstitial();
+ ~SupervisedUserInterstitial() override;
bool Init();
// InterstitialPageDelegate implementation.
- virtual std::string GetHTMLContents() override;
- virtual void CommandReceived(const std::string& command) override;
- virtual void OnProceed() override;
- virtual void OnDontProceed() override;
+ std::string GetHTMLContents() override;
+ void CommandReceived(const std::string& command) override;
+ void OnProceed() override;
+ void OnDontProceed() override;
// SupervisedUserServiceObserver implementation.
- virtual void OnURLFilterChanged() override;
+ void OnURLFilterChanged() override;
// TODO(treib): Also listen to OnCustodianInfoChanged and update as required.
void OnAccessRequestAdded(bool success);

Powered by Google App Engine
This is Rietveld 408576698