Index: chrome/browser/notifications/sync_notifier/image_holder.cc |
diff --git a/chrome/browser/notifications/sync_notifier/image_holder.cc b/chrome/browser/notifications/sync_notifier/image_holder.cc |
index 7e82aa1b0b1d6145fb2897dd4d7c077b0940f23b..c5dcbc16740efe4f7c74a30de0efe40c3f6d80bc 100644 |
--- a/chrome/browser/notifications/sync_notifier/image_holder.cc |
+++ b/chrome/browser/notifications/sync_notifier/image_holder.cc |
@@ -7,6 +7,8 @@ |
#include "chrome/browser/notifications/sync_notifier/image_holder.h" |
+#include "chrome/browser/profiles/profile.h" |
+ |
namespace notifier { |
ImageHolder::ImageHolder(const GURL& low_dpi_url, |
@@ -65,7 +67,7 @@ void ImageHolder::StartFetch() { |
// Now that we have queued them all, start the fetching. |
ScopedVector<chrome::BitmapFetcher>::iterator iter; |
for (iter = fetchers_.begin(); iter != fetchers_.end(); ++iter) { |
- (*iter)->Start(profile_); |
+ (*iter)->Start(profile_->GetRequestContext()); |
} |
} |