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

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

Issue 520303003: Change base/file_utils.h includes to base/files/file_utils.h in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « net/quic/quic_in_memory_cache.h ('k') | net/socket/ssl_server_socket_unittest.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 #include "net/socket/ssl_client_socket.h" 5 #include "net/socket/ssl_client_socket.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #include <openssl/bio.h> 10 #include <openssl/bio.h>
11 #include <openssl/bn.h> 11 #include <openssl/bn.h>
12 #include <openssl/evp.h> 12 #include <openssl/evp.h>
13 #include <openssl/pem.h> 13 #include <openssl/pem.h>
14 #include <openssl/rsa.h> 14 #include <openssl/rsa.h>
15 15
16 #include "base/file_util.h"
17 #include "base/files/file_path.h" 16 #include "base/files/file_path.h"
17 #include "base/files/file_util.h"
18 #include "base/memory/ref_counted.h" 18 #include "base/memory/ref_counted.h"
19 #include "base/message_loop/message_loop_proxy.h" 19 #include "base/message_loop/message_loop_proxy.h"
20 #include "base/values.h" 20 #include "base/values.h"
21 #include "crypto/openssl_util.h" 21 #include "crypto/openssl_util.h"
22 #include "crypto/scoped_openssl_types.h" 22 #include "crypto/scoped_openssl_types.h"
23 #include "net/base/address_list.h" 23 #include "net/base/address_list.h"
24 #include "net/base/io_buffer.h" 24 #include "net/base/io_buffer.h"
25 #include "net/base/net_errors.h" 25 #include "net/base/net_errors.h"
26 #include "net/base/net_log.h" 26 #include "net/base/net_log.h"
27 #include "net/base/net_log_unittest.h" 27 #include "net/base/net_log_unittest.h"
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 263
264 EXPECT_TRUE(CheckSSLClientSocketSentCert()); 264 EXPECT_TRUE(CheckSSLClientSocketSentCert());
265 265
266 sock_->Disconnect(); 266 sock_->Disconnect();
267 EXPECT_FALSE(sock_->IsConnected()); 267 EXPECT_FALSE(sock_->IsConnected());
268 } 268 }
269 #endif // defined(USE_OPENSSL_CERTS) 269 #endif // defined(USE_OPENSSL_CERTS)
270 270
271 } // namespace 271 } // namespace
272 } // namespace net 272 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_in_memory_cache.h ('k') | net/socket/ssl_server_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698