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

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

Issue 10909182: Make FileSystemContext respect StoragePartitions. filesystem:// urls will be properly isolated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove useless headers. Created 8 years, 3 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_impl.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 d41bd32448cb0ea51831326c1c82d54936fe261a..3e3688dbb7b8d0fac8d69ae1e4d42aa67678ecf3 100644
--- a/chrome/browser/profiles/profile.h
+++ b/chrome/browser/profiles/profile.h
@@ -237,17 +237,13 @@ class Profile : public content::BrowserContext {
// Returns the main request context.
virtual net::URLRequestContextGetter* GetRequestContext() = 0;
- virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition(
- const std::string& partition_id) OVERRIDE;
-
// Returns the request context used for extension-related requests. This
// is only used for a separate cookie store currently.
virtual net::URLRequestContextGetter* GetRequestContextForExtensions() = 0;
- // Returns the request context used within an installed app that has
- // requested isolated storage.
- virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp(
- const std::string& app_id) = 0;
+ // Returns the request context used within |partition_id|.
+ virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition(
+ const std::string& partition_id) = 0;
// Returns the SSLConfigService for this profile.
virtual net::SSLConfigService* GetSSLConfigService() = 0;
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698