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

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

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

Powered by Google App Engine
This is Rietveld 408576698