Index: chrome/browser/bitmap_fetcher/bitmap_fetcher_service.cc |
diff --git a/chrome/browser/bitmap_fetcher/bitmap_fetcher_service.cc b/chrome/browser/bitmap_fetcher/bitmap_fetcher_service.cc |
index aef3ba651c2e5e713e09218082eb5421209adc84..5613993dc057282c03a9f8eddbff87af520b46d2 100644 |
--- a/chrome/browser/bitmap_fetcher/bitmap_fetcher_service.cc |
+++ b/chrome/browser/bitmap_fetcher/bitmap_fetcher_service.cc |
@@ -121,11 +121,12 @@ void BitmapFetcherService::Prefetch(const GURL& url) { |
chrome::BitmapFetcher* BitmapFetcherService::CreateFetcher(const GURL& url) { |
chrome::BitmapFetcher* new_fetcher = new chrome::BitmapFetcher(url, this); |
- new_fetcher->Start( |
+ new_fetcher->Init( |
context_->GetRequestContext(), |
std::string(), |
net::URLRequest::CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE, |
net::LOAD_NORMAL); |
+ new_fetcher->Start(); |
return new_fetcher; |
} |