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

Unified Diff: components/dom_distiller/core/fake_distiller.h

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/core/fake_distiller.h
diff --git a/components/dom_distiller/core/fake_distiller.h b/components/dom_distiller/core/fake_distiller.h
index 62cbcd7359bc3eb2b3b4a3e659de68f7258eb53c..f7d96d7a057905f9375bf27cfa6db71df6453157 100644
--- a/components/dom_distiller/core/fake_distiller.h
+++ b/components/dom_distiller/core/fake_distiller.h
@@ -22,7 +22,7 @@ class MockDistillerFactory : public DistillerFactory {
MockDistillerFactory();
virtual ~MockDistillerFactory();
MOCK_METHOD0(CreateDistillerImpl, Distiller*());
- virtual scoped_ptr<Distiller> CreateDistiller() OVERRIDE {
+ virtual scoped_ptr<Distiller> CreateDistiller() override {
return scoped_ptr<Distiller>(CreateDistillerImpl());
}
};
@@ -44,7 +44,7 @@ class FakeDistiller : public Distiller {
const GURL& url,
scoped_ptr<DistillerPage> distiller_page,
const DistillationFinishedCallback& article_callback,
- const DistillationUpdateCallback& page_callback) OVERRIDE;
+ const DistillationUpdateCallback& page_callback) override;
void RunDistillerCallback(scoped_ptr<DistilledArticleProto> proto);
void RunDistillerUpdateCallback(const ArticleDistillationUpdate& update);
« no previous file with comments | « components/dom_distiller/core/dom_distiller_test_util.h ('k') | components/dom_distiller/core/fake_distiller_page.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698