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

Unified Diff: chrome/browser/ui/webui/interstitials/interstitial_ui.cc

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/webui/interstitials/interstitial_ui.cc
diff --git a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
index 2196a8a0818100e9f2772478f68c9978ae902998..6bdd42fe0cf6259fcb9ab08ec018770cdc0eea26 100644
--- a/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
+++ b/chrome/browser/ui/webui/interstitials/interstitial_ui.cc
@@ -27,13 +27,13 @@ class InterstitialHTMLSource : public content::URLDataSource {
public:
InterstitialHTMLSource(Profile* profile,
content::WebContents* web_contents);
- virtual ~InterstitialHTMLSource();
+ ~InterstitialHTMLSource() override;
// content::URLDataSource:
- virtual std::string GetMimeType(const std::string& mime_type) const override;
- virtual std::string GetSource() const override;
- virtual bool ShouldAddContentSecurityPolicy() const override;
- virtual void StartDataRequest(
+ std::string GetMimeType(const std::string& mime_type) const override;
+ std::string GetSource() const override;
+ bool ShouldAddContentSecurityPolicy() const override;
+ void StartDataRequest(
const std::string& path,
int render_process_id,
int render_frame_id,

Powered by Google App Engine
This is Rietveld 408576698