| Index: content/browser/content_browser_client.h
|
| diff --git a/content/browser/content_browser_client.h b/content/browser/content_browser_client.h
|
| index 9eee934e575046b64c1d20856a43214c49790043..961becafc33213f90e8f25579a1f4e2bb9e2a7f7 100644
|
| --- a/content/browser/content_browser_client.h
|
| +++ b/content/browser/content_browser_client.h
|
| @@ -42,6 +42,7 @@ class CookieOptions;
|
| class NetLog;
|
| class URLRequest;
|
| class URLRequestContext;
|
| +class URLRequestContextGetter;
|
| class X509Certificate;
|
| }
|
|
|
| @@ -269,6 +270,11 @@ class ContentBrowserClient {
|
| // This can be called on any thread.
|
| virtual FilePath GetDefaultDownloadDirectory() = 0;
|
|
|
| + // Returns the "default" request context. There is no such thing in the world
|
| + // of multiple profiles, and all calls to this need to be removed.
|
| + virtual net::URLRequestContextGetter*
|
| + GetDefaultRequestContextDeprecatedCrBug64339() = 0;
|
| +
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX)
|
| // Can return an optional fd for crash handling, otherwise returns -1.
|
| virtual int GetCrashSignalFD(const std::string& process_type) = 0;
|
|
|