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

Side by Side Diff: net/cert/x509_certificate_mac.cc

Issue 14223008: net: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « net/cert/x509_certificate.cc ('k') | net/cert/x509_util_openssl.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/cert/x509_certificate.h" 5 #include "net/cert/x509_certificate.h"
6 6
7 #include <CommonCrypto/CommonDigest.h> 7 #include <CommonCrypto/CommonDigest.h>
8 #include <CoreServices/CoreServices.h> 8 #include <CoreServices/CoreServices.h>
9 #include <Security/Security.h> 9 #include <Security/Security.h>
10 #include <time.h> 10 #include <time.h>
11 11
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/lazy_instance.h" 14 #include "base/lazy_instance.h"
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/mac/mac_logging.h" 16 #include "base/mac/mac_logging.h"
17 #include "base/mac/scoped_cftyperef.h" 17 #include "base/mac/scoped_cftyperef.h"
18 #include "base/memory/singleton.h" 18 #include "base/memory/singleton.h"
19 #include "base/pickle.h" 19 #include "base/pickle.h"
20 #include "base/sha1.h" 20 #include "base/sha1.h"
21 #include "base/string_piece.h" 21 #include "base/strings/string_piece.h"
22 #include "base/strings/sys_string_conversions.h" 22 #include "base/strings/sys_string_conversions.h"
23 #include "base/synchronization/lock.h" 23 #include "base/synchronization/lock.h"
24 #include "crypto/cssm_init.h" 24 #include "crypto/cssm_init.h"
25 #include "crypto/mac_security_services_lock.h" 25 #include "crypto/mac_security_services_lock.h"
26 #include "crypto/nss_util.h" 26 #include "crypto/nss_util.h"
27 #include "crypto/rsa_private_key.h" 27 #include "crypto/rsa_private_key.h"
28 #include "net/cert/x509_util_mac.h" 28 #include "net/cert/x509_util_mac.h"
29 #include "third_party/nss/mozilla/security/nss/lib/certdb/cert.h" 29 #include "third_party/nss/mozilla/security/nss/lib/certdb/cert.h"
30 30
31 using base::mac::ScopedCFTypeRef; 31 using base::mac::ScopedCFTypeRef;
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 *type = kPublicKeyTypeDH; 825 *type = kPublicKeyTypeDH;
826 break; 826 break;
827 default: 827 default:
828 *type = kPublicKeyTypeUnknown; 828 *type = kPublicKeyTypeUnknown;
829 *size_bits = 0; 829 *size_bits = 0;
830 break; 830 break;
831 } 831 }
832 } 832 }
833 833
834 } // namespace net 834 } // namespace net
OLDNEW
« no previous file with comments | « net/cert/x509_certificate.cc ('k') | net/cert/x509_util_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698