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

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

Issue 6201005: Initial support for partitioning cookies for isolated apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflicts. Created 9 years, 9 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
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_io_data.cc ('k') | chrome/browser/profiles/profile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile.h
diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h
index 15d3b09f0d07e015d19de7d058fa11ffe041e1b6..9b70f2c9de8bc8de3b17a595f876594854df2836 100644
--- a/chrome/browser/profiles/profile.h
+++ b/chrome/browser/profiles/profile.h
@@ -346,6 +346,14 @@ class Profile {
// happen on the UI thread.
virtual URLRequestContextGetter* GetRequestContext() = 0;
+ // Returns the request context appropriate for the given app. If installed_app
+ // is null or installed_app->is_storage_isolated() returns false, this is
+ // equivalent to calling GetRequestContext().
+ // TODO(creis): After isolated app storage is no longer an experimental
+ // feature, consider making this the default contract for GetRequestContext.
+ virtual URLRequestContextGetter* GetRequestContextForPossibleApp(
+ const Extension* installed_app) = 0;
+
// Returns the request context for media resources asociated with this
// profile.
virtual URLRequestContextGetter* GetRequestContextForMedia() = 0;
@@ -354,6 +362,11 @@ class Profile {
// is only used for a separate cookie store currently.
virtual URLRequestContextGetter* GetRequestContextForExtensions() = 0;
+ // Returns the request context used within an installed app that has
+ // requested isolated storage.
+ virtual URLRequestContextGetter* GetRequestContextForIsolatedApp(
+ const std::string& app_id) = 0;
+
// Called by the ExtensionService that lives in this profile. Gives the
// profile a chance to react to the load event before the EXTENSION_LOADED
// notification has fired. The purpose for handling this event first is to
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_io_data.cc ('k') | chrome/browser/profiles/profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698