Index: components/dom_distiller/core/distiller.cc |
diff --git a/components/dom_distiller/core/distiller.cc b/components/dom_distiller/core/distiller.cc |
index b5bd95dab38ade55ca266fccb64b5ea1e5cb8fc2..63698db102df853ca773a4c107b123562573af6f 100644 |
--- a/components/dom_distiller/core/distiller.cc |
+++ b/components/dom_distiller/core/distiller.cc |
@@ -37,7 +37,9 @@ DistillerFactoryImpl::DistillerFactoryImpl( |
DistillerFactoryImpl::~DistillerFactoryImpl() {} |
-scoped_ptr<Distiller> DistillerFactoryImpl::CreateDistiller() { |
+scoped_ptr<Distiller> DistillerFactoryImpl::CreateDistillerForUrl( |
+ const GURL& unused) { |
+ // This default implementation has the same behavior for all URLs. |
scoped_ptr<DistillerImpl> distiller(new DistillerImpl( |
*distiller_url_fetcher_factory_, dom_distiller_options_)); |
return distiller.Pass(); |