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

Side by Side Diff: net/cert/asn1_util.h

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/base/url_util.cc ('k') | net/cert/cert_verify_proc_mac.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 #ifndef NET_CERT_ASN1_UTIL_H_ 5 #ifndef NET_CERT_ASN1_UTIL_H_
6 #define NET_CERT_ASN1_UTIL_H_ 6 #define NET_CERT_ASN1_UTIL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/string_piece.h" 10 #include "base/strings/string_piece.h"
11 #include "net/base/net_export.h" 11 #include "net/base/net_export.h"
12 12
13 namespace net { 13 namespace net {
14 14
15 namespace asn1 { 15 namespace asn1 {
16 16
17 // These are the DER encodings of the tag byte for ASN.1 objects. 17 // These are the DER encodings of the tag byte for ASN.1 objects.
18 static const unsigned kBOOLEAN = 0x01; 18 static const unsigned kBOOLEAN = 0x01;
19 static const unsigned kINTEGER = 0x02; 19 static const unsigned kINTEGER = 0x02;
20 static const unsigned kBITSTRING = 0x03; 20 static const unsigned kBITSTRING = 0x03;
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // several locations as far as a CRL filter is concerned. 84 // several locations as far as a CRL filter is concerned.
85 NET_EXPORT_PRIVATE bool ExtractCRLURLsFromDERCert( 85 NET_EXPORT_PRIVATE bool ExtractCRLURLsFromDERCert(
86 base::StringPiece cert, 86 base::StringPiece cert,
87 std::vector<base::StringPiece>* urls_out); 87 std::vector<base::StringPiece>* urls_out);
88 88
89 } // namespace asn1 89 } // namespace asn1
90 90
91 } // namespace net 91 } // namespace net
92 92
93 #endif // NET_CERT_ASN1_UTIL_H_ 93 #endif // NET_CERT_ASN1_UTIL_H_
OLDNEW
« no previous file with comments | « net/base/url_util.cc ('k') | net/cert/cert_verify_proc_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698