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

Side by Side Diff: net/socket/ssl_server_socket_openssl.cc

Issue 6865011: Fix openssl build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 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 | « crypto/openssl_util.cc ('k') | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "base/logging.h" 5 #include "base/logging.h"
6 #include "net/socket/ssl_server_socket.h" 6 #include "net/socket/ssl_server_socket.h"
7 7
8 namespace net { 8 namespace net {
9 9
10 namespace { 10 namespace {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 // TODO(bulach): implement. 44 // TODO(bulach): implement.
45 NOTIMPLEMENTED(); 45 NOTIMPLEMENTED();
46 return false; 46 return false;
47 } 47 }
48 }; 48 };
49 49
50 } // namespace 50 } // namespace
51 51
52 SSLServerSocket* CreateSSLServerSocket(Socket* socket, 52 SSLServerSocket* CreateSSLServerSocket(Socket* socket,
53 X509Certificate* certificate, 53 X509Certificate* certificate,
54 base::RSAPrivateKey* key, 54 crypto::RSAPrivateKey* key,
55 const SSLConfig& ssl_config) { 55 const SSLConfig& ssl_config) {
56 return new SSLServerSocketOpenSSL(); 56 return new SSLServerSocketOpenSSL();
57 } 57 }
58 58
59 } // namespace net 59 } // namespace net
OLDNEW
« no previous file with comments | « crypto/openssl_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698