| Index: components/dom_distiller/core/distiller_url_fetcher.cc
|
| diff --git a/components/dom_distiller/core/distiller_url_fetcher.cc b/components/dom_distiller/core/distiller_url_fetcher.cc
|
| index f60efd7d68c817fe42cb791c2bd86d06ce83160b..0061d676b141c55072232d0c61fe989a82e4ab02 100644
|
| --- a/components/dom_distiller/core/distiller_url_fetcher.cc
|
| +++ b/components/dom_distiller/core/distiller_url_fetcher.cc
|
| @@ -43,10 +43,10 @@ void DistillerURLFetcher::FetchURL(const std::string& url,
|
| url_fetcher_->Start();
|
| }
|
|
|
| -scoped_ptr<URLFetcher> DistillerURLFetcher::CreateURLFetcher(
|
| +std::unique_ptr<URLFetcher> DistillerURLFetcher::CreateURLFetcher(
|
| net::URLRequestContextGetter* context_getter,
|
| const std::string& url) {
|
| - scoped_ptr<net::URLFetcher> fetcher =
|
| + std::unique_ptr<net::URLFetcher> fetcher =
|
| URLFetcher::Create(GURL(url), URLFetcher::GET, this);
|
| fetcher->SetRequestContext(context_getter);
|
| static const int kMaxRetries = 5;
|
|
|