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/standalone/content_extractor.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/standalone/content_extractor.cc
diff --git a/components/dom_distiller/standalone/content_extractor.cc b/components/dom_distiller/standalone/content_extractor.cc
index 8e83963cee6a5bf3a4d4fa17e92d1372fdfcfe42..f6e3278b5ccbb6652ad4eb0638d690e40496b9c2 100644
--- a/components/dom_distiller/standalone/content_extractor.cc
+++ b/components/dom_distiller/standalone/content_extractor.cc
@@ -200,10 +200,10 @@ class ContentExtractionRequest : public ViewRequestDelegate {
ContentExtractionRequest(const GURL& url) : url_(url) {}
virtual void OnArticleUpdated(ArticleDistillationUpdate article_update)
- OVERRIDE {}
+ override {}
virtual void OnArticleReady(const DistilledArticleProto* article_proto)
- OVERRIDE {
+ override {
article_proto_ = article_proto;
CHECK(article_proto->pages_size()) << "Failed extracting " << url_;
base::MessageLoop::current()->PostTask(
@@ -229,7 +229,7 @@ class ContentExtractor : public ContentBrowserTest {
// Change behavior of the default host resolver to avoid DNS lookup errors, so
// we can make network calls.
- virtual void SetUpOnMainThread() OVERRIDE {
+ virtual void SetUpOnMainThread() override {
if (!CommandLine::ForCurrentProcess()->HasSwitch(kDisableDnsSwitch)) {
EnableDNSLookupForThisTest();
}
@@ -237,7 +237,7 @@ class ContentExtractor : public ContentBrowserTest {
AddComponentsResources();
}
- virtual void TearDownOnMainThread() OVERRIDE {
+ virtual void TearDownOnMainThread() override {
DisableDNSLookupForThisTest();
}
« no previous file with comments | « components/dom_distiller/core/viewer_unittest.cc ('k') | components/dom_distiller/webui/dom_distiller_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698