| 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,
|
|
|