Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1166)

Unified Diff: components/dom_distiller/core/distiller.h

Issue 687183003: add options to specify original domain(s) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comment 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
« no previous file with comments | « no previous file | components/dom_distiller/core/distiller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/dom_distiller/core/distiller.h
diff --git a/components/dom_distiller/core/distiller.h b/components/dom_distiller/core/distiller.h
index 9f959dbca4703ce14e82fcb3801fa7a2d6a66859..dd64ec170034b9d1916481b759d097196b782c5b 100644
--- a/components/dom_distiller/core/distiller.h
+++ b/components/dom_distiller/core/distiller.h
@@ -48,7 +48,7 @@ class Distiller {
class DistillerFactory {
public:
- virtual scoped_ptr<Distiller> CreateDistiller() = 0;
+ virtual scoped_ptr<Distiller> CreateDistillerForUrl(const GURL& url) = 0;
virtual ~DistillerFactory() {}
};
@@ -59,7 +59,7 @@ class DistillerFactoryImpl : public DistillerFactory {
scoped_ptr<DistillerURLFetcherFactory> distiller_url_fetcher_factory,
const dom_distiller::proto::DomDistillerOptions& dom_distiller_options);
~DistillerFactoryImpl() override;
- scoped_ptr<Distiller> CreateDistiller() override;
+ scoped_ptr<Distiller> CreateDistillerForUrl(const GURL& url) override;
private:
scoped_ptr<DistillerURLFetcherFactory> distiller_url_fetcher_factory_;
« no previous file with comments | « no previous file | components/dom_distiller/core/distiller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698