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

Unified Diff: chrome/browser/dom_distiller/lazy_dom_distiller_service.cc

Issue 396503003: DomDistiller: fix 0 document width (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolve patch conflicts Created 6 years, 5 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: chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
diff --git a/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc b/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
index 22c3c66c1b8d34313281a3995a4d130139bf0d6c..4a92e4bcd5d767fda45c840a5f57834f02b74fce 100644
--- a/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
+++ b/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
@@ -76,8 +76,9 @@ scoped_ptr<ViewerHandle> LazyDomDistillerService::ViewUrl(
}
scoped_ptr<DistillerPage>
-LazyDomDistillerService::CreateDefaultDistillerPage() {
- return instance()->CreateDefaultDistillerPage();
+LazyDomDistillerService::CreateDefaultDistillerPage(
+ const gfx::Size& render_view_size) {
+ return instance()->CreateDefaultDistillerPage(render_view_size);
}
scoped_ptr<DistillerPage>

Powered by Google App Engine
This is Rietveld 408576698