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

Side by Side Diff: android_webview/browser/aw_content_browser_client.h

Issue 780383002: Don't key client auth on HttpNetworkSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | android_webview/browser/aw_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
6 #define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ 6 #define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include "android_webview/browser/aw_web_preferences_populater.h" 8 #include "android_webview/browser/aw_web_preferences_populater.h"
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 const GURL& request_url, 99 const GURL& request_url,
100 content::ResourceType resource_type, 100 content::ResourceType resource_type,
101 bool overridable, 101 bool overridable,
102 bool strict_enforcement, 102 bool strict_enforcement,
103 bool expired_previous_decision, 103 bool expired_previous_decision,
104 const base::Callback<void(bool)>& callback, 104 const base::Callback<void(bool)>& callback,
105 content::CertificateRequestResultType* result) override; 105 content::CertificateRequestResultType* result) override;
106 virtual void SelectClientCertificate( 106 virtual void SelectClientCertificate(
107 int render_process_id, 107 int render_process_id,
108 int render_frame_id, 108 int render_frame_id,
109 const net::HttpNetworkSession* network_session,
110 net::SSLCertRequestInfo* cert_request_info, 109 net::SSLCertRequestInfo* cert_request_info,
111 const base::Callback<void(net::X509Certificate*)>& callback) override; 110 const base::Callback<void(net::X509Certificate*)>& callback) override;
112 virtual void RequestPermission( 111 virtual void RequestPermission(
113 content::PermissionType permission, 112 content::PermissionType permission,
114 content::WebContents* web_contents, 113 content::WebContents* web_contents,
115 int bridge_id, 114 int bridge_id,
116 const GURL& requesting_frame, 115 const GURL& requesting_frame,
117 bool user_gesture, 116 bool user_gesture,
118 const base::Callback<void(bool)>& result_callback) override; 117 const base::Callback<void(bool)>& result_callback) override;
119 virtual void CancelPermissionRequest(content::PermissionType permission, 118 virtual void CancelPermissionRequest(content::PermissionType permission,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_; 166 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_;
168 167
169 JniDependencyFactory* native_factory_; 168 JniDependencyFactory* native_factory_;
170 169
171 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); 170 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient);
172 }; 171 };
173 172
174 } // namespace android_webview 173 } // namespace android_webview
175 174
176 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ 175 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | android_webview/browser/aw_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698