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

Side by Side Diff: chrome/browser/ui/android/ssl_client_certificate_selector.cc

Issue 10543093: TabContentsWrapper -> TabContents, part 34. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « no previous file | no next file » | 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 // Client Auth is not implemented on Android yet. 5 // Client Auth is not implemented on Android yet.
6 #include "chrome/browser/ssl_client_certificate_selector.h" 6 #include "chrome/browser/ssl_client_certificate_selector.h"
7 7
8 #include "base/logging.h" 8 #include "base/logging.h"
9 9
10 /////////////////////////////////////////////////////////////////////////////// 10 ///////////////////////////////////////////////////////////////////////////////
11 // SSLClientCertificateSelector public interface: 11 // SSLClientCertificateSelector public interface:
12 12
13 namespace browser { 13 namespace browser {
14 14
15 void ShowSSLClientCertificateSelector( 15 void ShowSSLClientCertificateSelector(
16 TabContentsWrapper* wrapper, 16 TabContents* tab_contents,
17 const net::HttpNetworkSession* network_session, 17 const net::HttpNetworkSession* network_session,
18 net::SSLCertRequestInfo* cert_request_info, 18 net::SSLCertRequestInfo* cert_request_info,
19 const base::Callback<void(net::X509Certificate*)>& callback) { 19 const base::Callback<void(net::X509Certificate*)>& callback) {
20 NOTIMPLEMENTED(); 20 NOTIMPLEMENTED();
21 } 21 }
22 22
23 } // namespace browser 23 } // namespace browser
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698