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

Unified Diff: chrome/browser/ui/views/stubs_aura.cc

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/stubs_aura.cc
===================================================================
--- chrome/browser/ui/views/stubs_aura.cc (revision 121706)
+++ chrome/browser/ui/views/stubs_aura.cc (working copy)
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "base/callback.h"
#include "base/logging.h"
#include "chrome/browser/external_protocol/external_protocol_handler.h"
@@ -25,6 +26,7 @@
class TabContentsWrapper;
namespace net {
+class HttpNetworkSession;
class SSLCertRequestInfo;
class X509Certificate;
}
@@ -37,8 +39,9 @@
#if defined(OS_WIN)
void ShowSSLClientCertificateSelector(
TabContentsWrapper* parent,
+ const net::HttpNetworkSession* network_session,
net::SSLCertRequestInfo* cert_request_info,
- SSLClientAuthHandler* delegate) {
+ const base::Callback<void(net::X509Certificate*)>& callback) {
// TODO(beng):
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698