Index: chrome/browser/notifications/sync_notifier/synced_notification.cc |
diff --git a/chrome/browser/notifications/sync_notifier/synced_notification.cc b/chrome/browser/notifications/sync_notifier/synced_notification.cc |
index 69224f715e6ffdf9f3bd64ce4c4fc0ec2966a206..1a18449dc4116bd1d3a11076d8710ad330790413 100644 |
--- a/chrome/browser/notifications/sync_notifier/synced_notification.cc |
+++ b/chrome/browser/notifications/sync_notifier/synced_notification.cc |
@@ -15,6 +15,7 @@ |
#include "chrome/browser/notifications/notification_ui_manager.h" |
#include "chrome/browser/notifications/sync_notifier/chrome_notifier_delegate.h" |
#include "chrome/browser/notifications/sync_notifier/chrome_notifier_service.h" |
+#include "chrome/browser/profiles/profile.h" |
#include "content/public/browser/browser_thread.h" |
#include "skia/ext/image_operations.h" |
#include "sync/protocol/sync.pb.h" |
@@ -308,7 +309,7 @@ void SyncedNotification::StartBitmapFetch() { |
// Now that we have queued and counted 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()); |
} |
} |