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

Side by Side Diff: net/http/transport_security_state.cc

Issue 18054010: Use a direct include of time headers in net/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « net/http/transport_security_state.h ('k') | net/ocsp/nss_ocsp.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/http/transport_security_state.h" 5 #include "net/http/transport_security_state.h"
6 6
7 #if defined(USE_OPENSSL) 7 #if defined(USE_OPENSSL)
8 #include <openssl/ecdsa.h> 8 #include <openssl/ecdsa.h>
9 #include <openssl/ssl.h> 9 #include <openssl/ssl.h>
10 #else // !defined(USE_OPENSSL) 10 #else // !defined(USE_OPENSSL)
11 #include <cryptohi.h> 11 #include <cryptohi.h>
12 #include <hasht.h> 12 #include <hasht.h>
13 #include <keyhi.h> 13 #include <keyhi.h>
14 #include <nspr.h> 14 #include <nspr.h>
15 #include <pk11pub.h> 15 #include <pk11pub.h>
16 #endif 16 #endif
17 17
18 #include <algorithm> 18 #include <algorithm>
19 19
20 #include "base/base64.h" 20 #include "base/base64.h"
21 #include "base/build_time.h" 21 #include "base/build_time.h"
22 #include "base/logging.h" 22 #include "base/logging.h"
23 #include "base/memory/scoped_ptr.h" 23 #include "base/memory/scoped_ptr.h"
24 #include "base/metrics/histogram.h" 24 #include "base/metrics/histogram.h"
25 #include "base/sha1.h" 25 #include "base/sha1.h"
26 #include "base/strings/string_number_conversions.h" 26 #include "base/strings/string_number_conversions.h"
27 #include "base/strings/string_util.h" 27 #include "base/strings/string_util.h"
28 #include "base/strings/utf_string_conversions.h" 28 #include "base/strings/utf_string_conversions.h"
29 #include "base/time.h" 29 #include "base/time/time.h"
30 #include "base/values.h" 30 #include "base/values.h"
31 #include "crypto/sha2.h" 31 #include "crypto/sha2.h"
32 #include "googleurl/src/gurl.h" 32 #include "googleurl/src/gurl.h"
33 #include "net/base/dns_util.h" 33 #include "net/base/dns_util.h"
34 #include "net/cert/x509_cert_types.h" 34 #include "net/cert/x509_cert_types.h"
35 #include "net/cert/x509_certificate.h" 35 #include "net/cert/x509_certificate.h"
36 #include "net/http/http_security_headers.h" 36 #include "net/http/http_security_headers.h"
37 #include "net/ssl/ssl_info.h" 37 #include "net/ssl/ssl_info.h"
38 38
39 #if defined(USE_OPENSSL) 39 #if defined(USE_OPENSSL)
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 return true; 848 return true;
849 } 849 }
850 850
851 bool TransportSecurityState::DomainState::HasPublicKeyPins() const { 851 bool TransportSecurityState::DomainState::HasPublicKeyPins() const {
852 return static_spki_hashes.size() > 0 || 852 return static_spki_hashes.size() > 0 ||
853 bad_static_spki_hashes.size() > 0 || 853 bad_static_spki_hashes.size() > 0 ||
854 dynamic_spki_hashes.size() > 0; 854 dynamic_spki_hashes.size() > 0;
855 } 855 }
856 856
857 } // namespace 857 } // namespace
OLDNEW
« no previous file with comments | « net/http/transport_security_state.h ('k') | net/ocsp/nss_ocsp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698