| Index: components/dom_distiller/content/dom_distiller_viewer_source.h
|
| diff --git a/components/dom_distiller/content/dom_distiller_viewer_source.h b/components/dom_distiller/content/dom_distiller_viewer_source.h
|
| index 3f579a18a4f972502cb0deb49313667507c81865..d9eaf9fb7247b0d85017dd1d6eaf5fe112a0e01e 100644
|
| --- a/components/dom_distiller/content/dom_distiller_viewer_source.h
|
| +++ b/components/dom_distiller/content/dom_distiller_viewer_source.h
|
| @@ -28,18 +28,18 @@ class DomDistillerViewerSource : public content::URLDataSource {
|
| class RequestViewerHandle;
|
|
|
| // Overridden from content::URLDataSource:
|
| - virtual std::string GetSource() const OVERRIDE;
|
| + virtual std::string GetSource() const override;
|
| virtual void StartDataRequest(
|
| const std::string& path,
|
| int render_process_id,
|
| int render_frame_id,
|
| - const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
|
| - virtual std::string GetMimeType(const std::string& path) const OVERRIDE;
|
| + const content::URLDataSource::GotDataCallback& callback) override;
|
| + virtual std::string GetMimeType(const std::string& path) const override;
|
| virtual bool ShouldServiceRequest(
|
| - const net::URLRequest* request) const OVERRIDE;
|
| + const net::URLRequest* request) const override;
|
| virtual void WillServiceRequest(const net::URLRequest* request,
|
| - std::string* path) const OVERRIDE;
|
| - virtual std::string GetContentSecurityPolicyObjectSrc() const OVERRIDE;
|
| + std::string* path) const override;
|
| + virtual std::string GetContentSecurityPolicyObjectSrc() const override;
|
|
|
| private:
|
| friend class DomDistillerViewerSourceTest;
|
|
|