| Index: components/dom_distiller/webui/dom_distiller_handler.cc
|
| diff --git a/components/dom_distiller/webui/dom_distiller_handler.cc b/components/dom_distiller/webui/dom_distiller_handler.cc
|
| index 9d8970b6631ffd9df3511220d2662ef5a25a25f4..71f741a10ad5e2a7086a0c5656a66e30f656af5f 100644
|
| --- a/components/dom_distiller/webui/dom_distiller_handler.cc
|
| +++ b/components/dom_distiller/webui/dom_distiller_handler.cc
|
| @@ -65,11 +65,10 @@ void DomDistillerHandler::HandleAddArticle(const base::ListValue* args) {
|
| GURL gurl(url);
|
| if (gurl.is_valid()) {
|
| service_->AddToList(
|
| - gurl,
|
| - service_->CreateDefaultDistillerPage(
|
| - web_ui()->GetWebContents()->GetContainerBounds().size()),
|
| - base::Bind(base::Bind(&DomDistillerHandler::OnArticleAdded,
|
| - base::Unretained(this))));
|
| + gurl, service_->CreateDefaultDistillerPage(
|
| + web_ui()->GetWebContents()->GetContainerBounds().size()),
|
| + base::Bind(&DomDistillerHandler::OnArticleAdded,
|
| + base::Unretained(this)));
|
| } else {
|
| web_ui()->CallJavascriptFunctionUnsafe("domDistiller.onArticleAddFailed");
|
| }
|
|
|