| Index: chrome/browser/ui/app_list/search/common/url_icon_source.cc
|
| diff --git a/chrome/browser/ui/app_list/search/common/url_icon_source.cc b/chrome/browser/ui/app_list/search/common/url_icon_source.cc
|
| index daa404614f2d7419da114393923d05a84cd45def..0687f8886cad524300403baa98bbc3d9c885bd1e 100644
|
| --- a/chrome/browser/ui/app_list/search/common/url_icon_source.cc
|
| +++ b/chrome/browser/ui/app_list/search/common/url_icon_source.cc
|
| @@ -37,8 +37,8 @@ UrlIconSource::~UrlIconSource() {
|
| void UrlIconSource::StartIconFetch() {
|
| icon_fetch_attempted_ = true;
|
|
|
| - icon_fetcher_.reset(
|
| - net::URLFetcher::Create(icon_url_, net::URLFetcher::GET, this));
|
| + icon_fetcher_ =
|
| + net::URLFetcher::Create(icon_url_, net::URLFetcher::GET, this);
|
| icon_fetcher_->SetRequestContext(context_getter_);
|
| icon_fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SAVE_COOKIES);
|
| icon_fetcher_->Start();
|
|
|