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

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

Issue 254483003: Start requiring DistillerPage for calls to DomDistillerService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Indent fixes (full git cl format) Created 6 years, 8 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
Index: components/dom_distiller/core/fake_distiller.h
diff --git a/components/dom_distiller/core/fake_distiller.h b/components/dom_distiller/core/fake_distiller.h
index 3ca075d21ef82e37677fe75506028eaebacaf271..8a3dc361dc60e4eece9db42ec496bcebdf91d6a4 100644
--- a/components/dom_distiller/core/fake_distiller.h
+++ b/components/dom_distiller/core/fake_distiller.h
@@ -35,10 +35,11 @@ class FakeDistiller : public Distiller {
virtual ~FakeDistiller();
MOCK_METHOD0(Die, void());
- virtual void DistillPage(const GURL& url,
- const DistillationFinishedCallback& article_callback,
- const DistillationUpdateCallback& page_callback)
- OVERRIDE;
+ virtual void DistillPage(
+ const GURL& url,
+ scoped_ptr<DistillerPage> distiller_page,
+ const DistillationFinishedCallback& article_callback,
+ const DistillationUpdateCallback& page_callback) OVERRIDE;
void RunDistillerCallback(scoped_ptr<DistilledArticleProto> proto);
« no previous file with comments | « components/dom_distiller/core/dom_distiller_service_unittest.cc ('k') | components/dom_distiller/core/fake_distiller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698