Index: components/dom_distiller/core/distiller_unittest.cc |
diff --git a/components/dom_distiller/core/distiller_unittest.cc b/components/dom_distiller/core/distiller_unittest.cc |
index 573818c18022fb07bcbe8b3c9f18e0a55b2054d3..a6ef0197dad65ce4fe3a642195fc206ba09782a4 100644 |
--- a/components/dom_distiller/core/distiller_unittest.cc |
+++ b/components/dom_distiller/core/distiller_unittest.cc |
@@ -200,8 +200,8 @@ class TestDistillerURLFetcher : public DistillerURLFetcher { |
responses_[kImageURLs[1]] = string(kImageData[1]); |
} |
- virtual void FetchURL(const string& url, |
- const URLFetcherCallback& callback) override { |
+ void FetchURL(const string& url, |
+ const URLFetcherCallback& callback) override { |
ASSERT_FALSE(callback.is_null()); |
url_ = url; |
callback_ = callback; |
@@ -228,8 +228,8 @@ class TestDistillerURLFetcherFactory : public DistillerURLFetcherFactory { |
public: |
TestDistillerURLFetcherFactory() : DistillerURLFetcherFactory(NULL) {} |
- virtual ~TestDistillerURLFetcherFactory() {} |
- virtual DistillerURLFetcher* CreateDistillerURLFetcher() const override { |
+ ~TestDistillerURLFetcherFactory() override {} |
+ DistillerURLFetcher* CreateDistillerURLFetcher() const override { |
return new TestDistillerURLFetcher(false); |
} |
}; |