| Index: content/public/browser/browser_context.h
|
| diff --git a/content/public/browser/browser_context.h b/content/public/browser/browser_context.h
|
| index 39622651875142ca4aa7be8079d8c70ab58458ce..79640f08e9d4d00144482b91cd846f0fa202e3f2 100644
|
| --- a/content/public/browser/browser_context.h
|
| +++ b/content/public/browser/browser_context.h
|
| @@ -94,7 +94,8 @@ class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
|
| int renderer_child_id) = 0;
|
|
|
| virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition(
|
| - const std::string& partition_id) = 0;
|
| + const FilePath& partition_path,
|
| + bool in_memory) = 0;
|
|
|
| // Returns the default request context for media resources associated with
|
| // this context.
|
| @@ -107,7 +108,8 @@ class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
|
| int renderer_child_id) = 0;
|
| virtual net::URLRequestContextGetter*
|
| GetMediaRequestContextForStoragePartition(
|
| - const std::string& partition_id) = 0;
|
| + const FilePath& partition_path,
|
| + bool in_memory) = 0;
|
|
|
| // Returns the resource context.
|
| virtual ResourceContext* GetResourceContext() = 0;
|
|
|