Index: chrome/browser/profiles/profile.h |
diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h |
index ee1c908c0f7d3288b23e2570b79eae262d1231b8..2e74136236495be6d042c4aba919fd99d9f2e99c 100644 |
--- a/chrome/browser/profiles/profile.h |
+++ b/chrome/browser/profiles/profile.h |
@@ -50,7 +50,6 @@ class Predictor; |
class AutocompleteClassifier; |
class BookmarkModel; |
class ChromeAppCacheService; |
-class ChromeDownloadManagerDelegate; |
class ChromeURLDataManager; |
class Extension; |
class ExtensionDevToolsManager; |
@@ -187,7 +186,6 @@ class Profile : public content::BrowserContext { |
virtual FilePath GetPath() = 0; |
virtual SSLHostState* GetSSLHostState() = 0; |
virtual DownloadManager* GetDownloadManager() = 0; |
- virtual bool HasCreatedDownloadManager() const = 0; |
virtual net::URLRequestContextGetter* GetRequestContext() = 0; |
virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
int renderer_child_id) = 0; |
@@ -536,13 +534,6 @@ class Profile : public content::BrowserContext { |
static net::URLRequestContextGetter* default_request_context_; |
private: |
- friend class DownloadTest; |
- |
- // Allow replacement of the download manager delegate, for interposition |
- // on browser tests. Note that this takes ownership of |delegate|. |
- virtual void SetDownloadManagerDelegate( |
- ChromeDownloadManagerDelegate* delegate) = 0; |
- |
// ***DEPRECATED**: You should be passing in the specific profile's |
// URLRequestContextGetter or using the system URLRequestContextGetter. |
// |