Index: content/shell/browser/shell_browser_context.h |
diff --git a/content/shell/browser/shell_browser_context.h b/content/shell/browser/shell_browser_context.h |
index b840d785db72e34cb6c416cde92f3ef8d5e7d419..b7fb41b7cb5a9efa0f45ae08828db7e296c11aa7 100644 |
--- a/content/shell/browser/shell_browser_context.h |
+++ b/content/shell/browser/shell_browser_context.h |
@@ -90,10 +90,16 @@ class ShellBrowserContext : public BrowserContext { |
// Used by ShellBrowserContext to initiate and set different types of |
// URLRequestContextGetter. |
+ virtual ShellURLRequestContextGetter* CreateURLRequestContextGetter( |
+ ProtocolHandlerMap* protocol_handlers, |
+ URLRequestInterceptorScopedVector request_interceptors); |
void set_url_request_context_getter(ShellURLRequestContextGetter* getter) { |
url_request_getter_ = getter; |
} |
+ bool ignore_certificate_errors() const { return ignore_certificate_errors_; } |
+ net::NetLog* net_log() const { return net_log_; } |
+ |
scoped_ptr<ShellResourceContext> resource_context_; |
bool ignore_certificate_errors_; |
scoped_ptr<ShellDownloadManagerDelegate> download_manager_delegate_; |