diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-24 21:56:26 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-24 21:56:26 +0000 |
commit | 33c1c26ae20ac8b60ce78945ad016a277d2b10ec (patch) | |
tree | 04f2df52a0fd311fb0b7ebf715c4ecbfa0d478db /chrome/browser/profiles/profile.h | |
parent | deeed436a6981cb7f22ab1ccd843272dc90fbfd1 (diff) | |
download | chromium_src-33c1c26ae20ac8b60ce78945ad016a277d2b10ec.zip chromium_src-33c1c26ae20ac8b60ce78945ad016a277d2b10ec.tar.gz chromium_src-33c1c26ae20ac8b60ce78945ad016a277d2b10ec.tar.bz2 |
Move core url data manager classes to content.
BUG=169170
Review URL: https://codereview.chromium.org/12049052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178663 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles/profile.h')
-rw-r--r-- | chrome/browser/profiles/profile.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h index ccd62c2..02d1b09 100644 --- a/chrome/browser/profiles/profile.h +++ b/chrome/browser/profiles/profile.h @@ -13,11 +13,9 @@ #include "base/hash_tables.h" #include "base/logging.h" #include "chrome/browser/net/pref_proxy_config_tracker.h" -#include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" #include "content/public/browser/browser_context.h" class ChromeAppCacheService; -class ChromeURLDataManager; class ExtensionService; class ExtensionSpecialStoragePolicy; class FaviconService; @@ -364,16 +362,8 @@ class Profile : public content::BrowserContext { protected: // TODO(erg, willchan): Remove friendship once |ProfileIOData| is made into // a |ProfileKeyedService|. - friend class ChromeURLDataManagerFactory; friend class OffTheRecordProfileImpl; - // Returns a callback to a method returning a |ChromeURLDataManagerBackend|. - // Used to create a |ChromeURLDataManager| for this |Profile|. - // TODO(erg, willchan): Remove this once |ProfileIOData| is made into a - // |ProfileKeyedService|. - virtual base::Callback<ChromeURLDataManagerBackend*(void)> - GetChromeURLDataManagerBackendGetter() const = 0; - private: bool restored_last_session_; |