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(); |
} |