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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 9384014: Remove knowledge about SSLClientAuthHandler from chrome. Instead a callback is given to the embed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments+sync Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/DEPS ('k') | chrome/browser/chrome_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 CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 int render_view_id, 82 int render_view_id,
83 int cert_error, 83 int cert_error,
84 const net::SSLInfo& ssl_info, 84 const net::SSLInfo& ssl_info,
85 const GURL& request_url, 85 const GURL& request_url,
86 bool overridable, 86 bool overridable,
87 const base::Callback<void(bool)>& callback, 87 const base::Callback<void(bool)>& callback,
88 bool* cancel_request) OVERRIDE; 88 bool* cancel_request) OVERRIDE;
89 virtual void SelectClientCertificate( 89 virtual void SelectClientCertificate(
90 int render_process_id, 90 int render_process_id,
91 int render_view_id, 91 int render_view_id,
92 SSLClientAuthHandler* handler) OVERRIDE; 92 const net::HttpNetworkSession* network_session,
93 net::SSLCertRequestInfo* cert_request_info,
94 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE;
93 virtual void AddNewCertificate( 95 virtual void AddNewCertificate(
94 net::URLRequest* request, 96 net::URLRequest* request,
95 net::X509Certificate* cert, 97 net::X509Certificate* cert,
96 int render_process_id, 98 int render_process_id,
97 int render_view_id) OVERRIDE; 99 int render_view_id) OVERRIDE;
98 virtual void RequestDesktopNotificationPermission( 100 virtual void RequestDesktopNotificationPermission(
99 const GURL& source_origin, 101 const GURL& source_origin,
100 int callback_context, 102 int callback_context,
101 int render_process_id, 103 int render_process_id,
102 int render_view_id) OVERRIDE; 104 int render_view_id) OVERRIDE;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 #if defined(USE_NSS) 151 #if defined(USE_NSS)
150 virtual 152 virtual
151 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 153 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
152 const GURL& url) OVERRIDE; 154 const GURL& url) OVERRIDE;
153 #endif 155 #endif
154 }; 156 };
155 157
156 } // namespace chrome 158 } // namespace chrome
157 159
158 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 160 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/DEPS ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698