| Index: components/dom_distiller/core/dom_distiller_service.h
|
| diff --git a/components/dom_distiller/core/dom_distiller_service.h b/components/dom_distiller/core/dom_distiller_service.h
|
| index cd59950bd7fafea972c5c033b91eeec9bec68f2d..ac2f104fe53a782f0c44be45d4231018194311e4 100644
|
| --- a/components/dom_distiller/core/dom_distiller_service.h
|
| +++ b/components/dom_distiller/core/dom_distiller_service.h
|
| @@ -83,7 +83,8 @@ class DomDistillerServiceInterface {
|
| const GURL& url) = 0;
|
|
|
| // Creates a default DistillerPage.
|
| - virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage() = 0;
|
| + virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage(
|
| + const gfx::Size& render_view_size) = 0;
|
| virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle(
|
| scoped_ptr<SourcePageHandle> handle) = 0;
|
|
|
| @@ -122,7 +123,8 @@ class DomDistillerService : public DomDistillerServiceInterface {
|
| ViewRequestDelegate* delegate,
|
| scoped_ptr<DistillerPage> distiller_page,
|
| const GURL& url) OVERRIDE;
|
| - virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage() OVERRIDE;
|
| + virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage(
|
| + const gfx::Size& render_view_size) OVERRIDE;
|
| virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle(
|
| scoped_ptr<SourcePageHandle> handle) OVERRIDE;
|
| virtual void AddObserver(DomDistillerObserver* observer) OVERRIDE;
|
|
|