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

Unified Diff: chrome/browser/profiles/profile_impl.h

Issue 7601013: Web Intents: Hook up the register intent InfoBar with the WebIntentsRegistry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanups and fixes. Created 9 years, 4 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: chrome/browser/profiles/profile_impl.h
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
index 3f1b0a885c000e732ff74b637dc2aa8dde363d77..68e600d5dd8cc4b536196687b552d9bfc91eaef6 100644
--- a/chrome/browser/profiles/profile_impl.h
+++ b/chrome/browser/profiles/profile_impl.h
@@ -24,6 +24,7 @@ class ExtensionPrefs;
class ExtensionPrefValueMap;
class PrefService;
class SpellCheckHostMetrics;
+class WebIntentsRegistry;
#if defined(OS_CHROMEOS)
namespace chromeos {
@@ -79,6 +80,7 @@ class ProfileImpl : public Profile,
virtual TemplateURLFetcher* GetTemplateURLFetcher();
virtual DownloadManager* GetDownloadManager();
virtual PersonalDataManager* GetPersonalDataManager();
+ virtual WebIntentsRegistry* GetWebIntentsRegistry();
virtual fileapi::FileSystemContext* GetFileSystemContext();
virtual quota::QuotaManager* GetQuotaManager();
virtual bool HasCreatedDownloadManager() const;
@@ -242,6 +244,7 @@ class ProfileImpl : public Profile,
scoped_refptr<PasswordStore> password_store_;
scoped_refptr<WebKitContext> webkit_context_;
scoped_refptr<PersonalDataManager> personal_data_manager_;
+ scoped_refptr<WebIntentsRegistry> web_intents_registry_;
scoped_refptr<fileapi::FileSystemContext> file_system_context_;
scoped_ptr<BrowserSignin> browser_signin_;
scoped_refptr<quota::QuotaManager> quota_manager_;

Powered by Google App Engine
This is Rietveld 408576698