| 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_;
|
|
|