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

Unified Diff: chrome/browser/profiles/profile.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: Test fix. 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.h
diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h
index 39bff938d587d17a245fdf62c303a93dc50313a9..47298e40a8833fe7f34f0c0f8b389b74d419d723 100644
--- a/chrome/browser/profiles/profile.h
+++ b/chrome/browser/profiles/profile.h
@@ -86,6 +86,7 @@ class UserStyleSheetWatcher;
class VisitedLinkEventListener;
class VisitedLinkMaster;
class WebDataService;
+class WebIntentsRegistry;
class PromoResourceService;
#if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX)
@@ -348,6 +349,10 @@ class Profile : public content::BrowserContext {
// Returns the PersonalDataManager associated with this profile.
virtual PersonalDataManager* GetPersonalDataManager() = 0;
+ // Returns the WebIntentsRegistry associated with this profile. Owned by the
Elliot Glaysher 2011/08/09 22:09:18 We are trying to halt this pattern. The profile is
James Hawkins 2011/08/10 00:58:38 Done.
+ // profile.
+ virtual WebIntentsRegistry* GetWebIntentsRegistry() = 0;
+
// Returns the FileSystemContext associated to this profile. The context
// is lazily created the first time this method is called. This is owned
// by the profile.

Powered by Google App Engine
This is Rietveld 408576698