diff options
Diffstat (limited to 'content/public/browser/content_browser_client.h')
-rw-r--r-- | content/public/browser/content_browser_client.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h index 18c837b..e3e8250 100644 --- a/content/public/browser/content_browser_client.h +++ b/content/public/browser/content_browser_client.h @@ -50,6 +50,7 @@ class ImageSkia; namespace net { class CookieOptions; +class CookieStore; class HttpNetworkSession; class NetLog; class SSLCertRequestInfo; @@ -625,6 +626,12 @@ class CONTENT_EXPORT ContentBrowserClient { // Returns true if dev channel APIs are available for plugins. virtual bool IsPluginAllowedToUseDevChannelAPIs(); + + // Returns a special cookie store to use for a given render process, or NULL + // if the default cookie store should be used + // This is called on the IO thread. + virtual net::CookieStore* OverrideCookieStoreForRenderProcess( + int render_process_id_); }; } // namespace content |