Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(981)

Unified Diff: content/shell/browser/shell_browser_context.h

Issue 651883002: Content Shell: Introduce LayoutTestURLRequestContextGetter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@LayoutTestBrowserMainParts
Patch Set: Fix. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698