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

Unified Diff: components/dom_distiller/content/dom_distiller_viewer_source.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: 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.

Powered by Google App Engine
This is Rietveld 408576698