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

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

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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/cert/ct_objects_extractor_nss.cc ('k') | net/cert/internal/name_constraints.h » ('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_EV_ROOT_CA_METADATA_H_ 5 #ifndef NET_CERT_EV_ROOT_CA_METADATA_H_
6 #define NET_CERT_EV_ROOT_CA_METADATA_H_ 6 #define NET_CERT_EV_ROOT_CA_METADATA_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #if defined(USE_NSS_CERTS) || defined(OS_IOS) 10 #if defined(USE_NSS_CERTS) || defined(OS_IOS)
11 #include <secoidt.h> 11 #include <secoidt.h>
12 #endif 12 #endif
13 13
14 #include <map> 14 #include <map>
15 #include <set> 15 #include <set>
16 #include <string> 16 #include <string>
17 #include <vector> 17 #include <vector>
18 18
19 #include "base/macros.h"
19 #include "net/base/net_export.h" 20 #include "net/base/net_export.h"
20 #include "net/cert/x509_certificate.h" 21 #include "net/cert/x509_certificate.h"
21 22
22 namespace base { 23 namespace base {
23 template <typename T> 24 template <typename T>
24 struct DefaultLazyInstanceTraits; 25 struct DefaultLazyInstanceTraits;
25 } // namespace base 26 } // namespace base
26 27
27 namespace net { 28 namespace net {
28 29
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // extra_cas_ contains any EV CA metadata that was added at runtime. 81 // extra_cas_ contains any EV CA metadata that was added at runtime.
81 ExtraEVCAMap extra_cas_; 82 ExtraEVCAMap extra_cas_;
82 #endif 83 #endif
83 84
84 DISALLOW_COPY_AND_ASSIGN(EVRootCAMetadata); 85 DISALLOW_COPY_AND_ASSIGN(EVRootCAMetadata);
85 }; 86 };
86 87
87 } // namespace net 88 } // namespace net
88 89
89 #endif // NET_CERT_EV_ROOT_CA_METADATA_H_ 90 #endif // NET_CERT_EV_ROOT_CA_METADATA_H_
OLDNEW
« no previous file with comments | « net/cert/ct_objects_extractor_nss.cc ('k') | net/cert/internal/name_constraints.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698