| Index: components/dom_distiller/content/dom_distiller_viewer_source.cc
|
| diff --git a/components/dom_distiller/content/dom_distiller_viewer_source.cc b/components/dom_distiller/content/dom_distiller_viewer_source.cc
|
| index ed51c47c83ceb4f5af9747c81dd8b545f918aa59..9c844d6c3d8ad8088e4fdb23fe577ebea47505d4 100644
|
| --- a/components/dom_distiller/content/dom_distiller_viewer_source.cc
|
| +++ b/components/dom_distiller/content/dom_distiller_viewer_source.cc
|
| @@ -48,21 +48,21 @@ class DomDistillerViewerSource::RequestViewerHandle
|
|
|
| // ViewRequestDelegate implementation:
|
| virtual void OnArticleReady(
|
| - const DistilledArticleProto* article_proto) OVERRIDE;
|
| + const DistilledArticleProto* article_proto) override;
|
|
|
| virtual void OnArticleUpdated(
|
| - ArticleDistillationUpdate article_update) OVERRIDE;
|
| + ArticleDistillationUpdate article_update) override;
|
|
|
| void TakeViewerHandle(scoped_ptr<ViewerHandle> viewer_handle);
|
|
|
| // content::WebContentsObserver implementation:
|
| virtual void DidNavigateMainFrame(
|
| const content::LoadCommittedDetails& details,
|
| - const content::FrameNavigateParams& params) OVERRIDE;
|
| - virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE;
|
| - virtual void WebContentsDestroyed() OVERRIDE;
|
| + const content::FrameNavigateParams& params) override;
|
| + virtual void RenderProcessGone(base::TerminationStatus status) override;
|
| + virtual void WebContentsDestroyed() override;
|
| virtual void DidFinishLoad(content::RenderFrameHost* render_frame_host,
|
| - const GURL& validated_url) OVERRIDE;
|
| + const GURL& validated_url) override;
|
|
|
| private:
|
| // Sends JavaScript to the attached Viewer, buffering data if the viewer isn't
|
| @@ -76,8 +76,8 @@ class DomDistillerViewerSource::RequestViewerHandle
|
|
|
| // DistilledPagePrefs::Observer implementation:
|
| virtual void OnChangeFontFamily(
|
| - DistilledPagePrefs::FontFamily new_font_family) OVERRIDE;
|
| - virtual void OnChangeTheme(DistilledPagePrefs::Theme new_theme) OVERRIDE;
|
| + DistilledPagePrefs::FontFamily new_font_family) override;
|
| + virtual void OnChangeTheme(DistilledPagePrefs::Theme new_theme) override;
|
|
|
| // The handle to the view request towards the DomDistillerService. It
|
| // needs to be kept around to ensure the distillation request finishes.
|
|
|