Index: components/dom_distiller/core/fake_distiller_page.h |
diff --git a/components/dom_distiller/core/fake_distiller_page.h b/components/dom_distiller/core/fake_distiller_page.h |
index afe4a45626dd7335ac535d291e1f4a1a9246b85a..b1df4e87c6fa2760e7781e7565afe6d77fdabf98 100644 |
--- a/components/dom_distiller/core/fake_distiller_page.h |
+++ b/components/dom_distiller/core/fake_distiller_page.h |
@@ -17,11 +17,11 @@ class MockDistillerPageFactory : public DistillerPageFactory { |
virtual ~MockDistillerPageFactory(); |
MOCK_CONST_METHOD0(CreateDistillerPageImpl, DistillerPage*()); |
virtual scoped_ptr<DistillerPage> CreateDistillerPage( |
- const gfx::Size& render_view_size) const OVERRIDE { |
+ const gfx::Size& render_view_size) const override { |
return scoped_ptr<DistillerPage>(CreateDistillerPageImpl()); |
} |
virtual scoped_ptr<DistillerPage> CreateDistillerPageWithHandle( |
- scoped_ptr<SourcePageHandle> handle) const OVERRIDE { |
+ scoped_ptr<SourcePageHandle> handle) const override { |
return scoped_ptr<DistillerPage>(CreateDistillerPageImpl()); |
} |
}; |