| Index: chrome/browser/ui/passwords/account_avatar_fetcher.cc
|
| diff --git a/chrome/browser/ui/passwords/account_avatar_fetcher.cc b/chrome/browser/ui/passwords/account_avatar_fetcher.cc
|
| index 2db5037dd0cb007b072da4e04624ef9d40d7c026..3889e11a2a098895c93a211a04f6f53db321019c 100644
|
| --- a/chrome/browser/ui/passwords/account_avatar_fetcher.cc
|
| +++ b/chrome/browser/ui/passwords/account_avatar_fetcher.cc
|
| @@ -19,10 +19,11 @@ AccountAvatarFetcher::~AccountAvatarFetcher() = default;
|
|
|
| void AccountAvatarFetcher::Start(
|
| net::URLRequestContextGetter* request_context) {
|
| - fetcher_.Start(request_context, std::string(),
|
| - net::URLRequest::NEVER_CLEAR_REFERRER,
|
| - net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SAVE_COOKIES |
|
| - net::LOAD_MAYBE_USER_GESTURE);
|
| + fetcher_.Init(request_context, std::string(),
|
| + net::URLRequest::NEVER_CLEAR_REFERRER,
|
| + net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SAVE_COOKIES |
|
| + net::LOAD_MAYBE_USER_GESTURE);
|
| + fetcher_.Start();
|
| }
|
|
|
| void AccountAvatarFetcher::OnFetchComplete(const GURL& /*url*/,
|
|
|