Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1215)

Unified Diff: content/browser/resource_context.h

Issue 8401001: Fix history importing by delaying DownloadManager creation. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix ifndefs Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/resource_context.h
diff --git a/content/browser/resource_context.h b/content/browser/resource_context.h
index 0e04d07a2f14a876890a2391b4275cedef47f393..387939080a0795085f10676160ee0ae26f488a88 100644
--- a/content/browser/resource_context.h
+++ b/content/browser/resource_context.h
@@ -11,10 +11,10 @@
#include "base/callback.h"
#include "base/memory/ref_counted.h"
#include "content/common/content_export.h"
-#include "content/browser/download/download_manager.h"
class ChromeAppCacheService;
class ChromeBlobStorageContext;
+class DownloadIdFactory;
class ExtensionInfoMap;
class HostZoomMap;
class MediaObserver;
@@ -77,10 +77,8 @@ class CONTENT_EXPORT ResourceContext {
MediaObserver* media_observer() const;
void set_media_observer(MediaObserver* media_observer);
- // TODO(benjhayden): Promote GetNextIdThunkType to a separate object.
- const DownloadManager::GetNextIdThunkType& next_download_id_thunk() const;
- void set_next_download_id_thunk(
- const DownloadManager::GetNextIdThunkType& thunk);
+ DownloadIdFactory* download_id_factory() const;
+ void set_download_id_factory(DownloadIdFactory* download_id_factory);
media_stream::MediaStreamManager* media_stream_manager() const;
void set_media_stream_manager(
@@ -101,7 +99,7 @@ class CONTENT_EXPORT ResourceContext {
quota::QuotaManager* quota_manager_;
HostZoomMap* host_zoom_map_;
MediaObserver* media_observer_;
- DownloadManager::GetNextIdThunkType next_download_id_thunk_;
+ DownloadIdFactory* download_id_factory_;
media_stream::MediaStreamManager* media_stream_manager_;
// Externally-defined data accessible by key.
« no previous file with comments | « content/browser/renderer_host/resource_dispatcher_host_unittest.cc ('k') | content/browser/resource_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698