Chromium Code Reviews| Index: chrome/browser/profiles/profile.h |
| diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h |
| index d84c9a0ef9b92cf9eaa6d4b712b108dfda97d488..76bee5aa2de666fff484aad948258c0f39efcb01 100644 |
| --- a/chrome/browser/profiles/profile.h |
| +++ b/chrome/browser/profiles/profile.h |
| @@ -296,6 +296,7 @@ class Profile : public content::BrowserContext { |
| virtual BookmarkModel* GetBookmarkModel() = 0; |
| // Returns the ProtocolHandlerRegistry, creating if not yet created. |
| + // TODO(smckay): replace this with access via ProtocolHandlerRegistryFactory. |
| virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() = 0; |
| // Return whether 2 profiles are the same. 2 profiles are the same if they |
| @@ -319,10 +320,6 @@ class Profile : public content::BrowserContext { |
| // Start up service that gathers data from a promo resource feed. |
| virtual void InitPromoResources() = 0; |
| - // Register URLRequestFactories for protocols registered with |
| - // registerProtocolHandler. |
| - virtual void InitRegisteredProtocolHandlers() = 0; |
|
Steve McKay
2012/06/14 04:05:04
FYI, this is now handled by the factory which is c
|
| - |
| // Returns the last directory that was chosen for uploading or opening a file. |
| virtual FilePath last_selected_directory() = 0; |
| virtual void set_last_selected_directory(const FilePath& path) = 0; |