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

Unified Diff: android_webview/browser/net/aw_url_request_context_getter.h

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle conflicting Android Webview change Created 5 years, 1 month 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: android_webview/browser/net/aw_url_request_context_getter.h
diff --git a/android_webview/browser/net/aw_url_request_context_getter.h b/android_webview/browser/net/aw_url_request_context_getter.h
index 06ddad5c63f2bb3bf9062351716a3c51945307a2..b0aed2191ccdd5c301f24443dd499143024bda07 100644
--- a/android_webview/browser/net/aw_url_request_context_getter.h
+++ b/android_webview/browser/net/aw_url_request_context_getter.h
@@ -19,12 +19,12 @@ namespace net {
class CookieStore;
class HostResolver;
class HttpAuthHandlerFactory;
+class HttpAuthPreferences;
class HttpUserAgentSettings;
class NetLog;
class ProxyConfigService;
class URLRequestContext;
class URLRequestJobFactory;
-class URLSecurityManager;
}
namespace android_webview {
@@ -82,9 +82,9 @@ class AwURLRequestContextGetter : public net::URLRequestContextGetter {
scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings_;
scoped_ptr<net::URLRequestContext> url_request_context_;
- // URLSecurityManager associated with the negotiate auth handler. It is
- // configured to follow the auth_server_whitelist_
- scoped_ptr<net::URLSecurityManager> url_security_manager_;
+ // http_auth_preferences_ holds the preferences for the negotiate
+ // authenticator.
+ scoped_ptr<net::HttpAuthPreferences> http_auth_preferences_;
asanka 2015/12/01 05:30:03 The scoped_ptr<net::URLRequestContext> in line 83
aberent 2015/12/01 14:33:25 Done.
// Store HTTP Auth-related policies in this thread.
std::string auth_android_negotiate_account_type_;
« no previous file with comments | « no previous file | android_webview/browser/net/aw_url_request_context_getter.cc » ('j') | chrome/browser/io_thread.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698