| Index: chrome/browser/profiles/profile_impl.h
|
| diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
|
| index d25fae4dde552707ec686f07d993247f09b91a98..e6476e4219ae65acddfc2fb4abeebe0218f9101f 100644
|
| --- a/chrome/browser/profiles/profile_impl.h
|
| +++ b/chrome/browser/profiles/profile_impl.h
|
| @@ -67,9 +67,6 @@ class ProfileImpl : public Profile,
|
| virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
|
| virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
|
| int renderer_child_id) OVERRIDE;
|
| - virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition(
|
| - const FilePath& partition_path,
|
| - bool in_memory) OVERRIDE;
|
| virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE;
|
| virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess(
|
| int renderer_child_id) OVERRIDE;
|
| @@ -109,6 +106,22 @@ class ProfileImpl : public Profile,
|
| virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE;
|
| virtual bool IsSameProfile(Profile* profile) OVERRIDE;
|
| virtual base::Time GetStartTime() const OVERRIDE;
|
| + virtual net::URLRequestContextGetter* CreateRequestContext(
|
| + scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| + blob_protocol_handler,
|
| + scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| + file_system_protocol_handler,
|
| + scoped_ptr<net::URLRequestJobFactory::Interceptor>
|
| + developer_protocol_handler) OVERRIDE;
|
| + virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
|
| + const FilePath& partition_path,
|
| + bool in_memory,
|
| + scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| + blob_protocol_handler,
|
| + scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| + file_system_protocol_handler,
|
| + scoped_ptr<net::URLRequestJobFactory::Interceptor>
|
| + developer_protocol_handler) OVERRIDE;
|
| virtual FilePath last_selected_directory() OVERRIDE;
|
| virtual void set_last_selected_directory(const FilePath& path) OVERRIDE;
|
| virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE;
|
|
|