Index: chrome/browser/profiles/profile_impl.h |
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h |
index acc0d5bd9f04b69d08c2387ca03ca425768dbd51..206c1e503d75c9ff2950467621b5ba5d2566141c 100644 |
--- a/chrome/browser/profiles/profile_impl.h |
+++ b/chrome/browser/profiles/profile_impl.h |
@@ -103,6 +103,7 @@ class ProfileImpl : public Profile, |
virtual bool HasProfileSyncService() const; |
virtual bool DidLastSessionExitCleanly(); |
virtual BookmarkModel* GetBookmarkModel(); |
+ virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry(); |
virtual bool IsSameProfile(Profile* profile); |
virtual base::Time GetStartTime() const; |
virtual TabRestoreService* GetTabRestoreService(); |
@@ -116,6 +117,7 @@ class ProfileImpl : public Profile, |
virtual void MarkAsCleanShutdown(); |
virtual void InitExtensions(); |
virtual void InitWebResources(); |
+ virtual void InitRegisteredProtocolHandlers(); |
virtual NTPResourceCache* GetNTPResourceCache(); |
virtual FilePath last_selected_directory(); |
virtual void set_last_selected_directory(const FilePath& path); |
@@ -207,6 +209,7 @@ class ProfileImpl : public Profile, |
scoped_ptr<TemplateURLFetcher> template_url_fetcher_; |
scoped_ptr<TemplateURLModel> template_url_model_; |
scoped_ptr<BookmarkModel> bookmark_bar_model_; |
+ scoped_refptr<ProtocolHandlerRegistry> protocol_handler_registry_; |
scoped_refptr<WebResourceService> web_resource_service_; |
scoped_ptr<NTPResourceCache> ntp_resource_cache_; |