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

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

Issue 13006020: net: extract net/cert out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/nss_cert_database_unittest.cc ('k') | net/cert/pem_tokenizer.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BASE_PEM_TOKENIZER_H_ 5 #ifndef NET_CERT_PEM_TOKENIZER_H_
6 #define NET_BASE_PEM_TOKENIZER_H_ 6 #define NET_CERT_PEM_TOKENIZER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/string_piece.h" 11 #include "base/string_piece.h"
12 #include "net/base/net_export.h" 12 #include "net/base/net_export.h"
13 13
14 namespace net { 14 namespace net {
15 15
16 // PEMTokenizer is a utility class for the parsing of data encapsulated 16 // PEMTokenizer is a utility class for the parsing of data encapsulated
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 std::vector<PEMType> block_types_; 67 std::vector<PEMType> block_types_;
68 68
69 // The raw (Base64-decoded) data of the last successfully decoded block. 69 // The raw (Base64-decoded) data of the last successfully decoded block.
70 std::string data_; 70 std::string data_;
71 71
72 DISALLOW_COPY_AND_ASSIGN(PEMTokenizer); 72 DISALLOW_COPY_AND_ASSIGN(PEMTokenizer);
73 }; 73 };
74 74
75 } // namespace net 75 } // namespace net
76 76
77 #endif // NET_BASE_PEM_TOKENIZER_H_ 77 #endif // NET_CERT_PEM_TOKENIZER_H_
OLDNEW
« no previous file with comments | « net/cert/nss_cert_database_unittest.cc ('k') | net/cert/pem_tokenizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698