OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // Utility class that performs basic operations on header value tokens: parsing | 5 // Utility class that performs basic operations on header value tokens: parsing |
6 // them out, checking for presense of certain tokens, and removing them. | 6 // them out, checking for presense of certain tokens, and removing them. |
7 | 7 |
8 #ifndef NET_TOOLS_BALSA_BALSA_HEADERS_TOKEN_UTILS_H_ | 8 #ifndef NET_TOOLS_BALSA_BALSA_HEADERS_TOKEN_UTILS_H_ |
9 #define NET_TOOLS_BALSA_BALSA_HEADERS_TOKEN_UTILS_H_ | 9 #define NET_TOOLS_BALSA_BALSA_HEADERS_TOKEN_UTILS_H_ |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 const BalsaHeaders& headers, | 51 const BalsaHeaders& headers, |
52 const BalsaHeaders::HeaderLineDescription& line, | 52 const BalsaHeaders::HeaderLineDescription& line, |
53 BalsaHeaders::HeaderTokenList* tokens); | 53 BalsaHeaders::HeaderTokenList* tokens); |
54 | 54 |
55 BalsaHeadersTokenUtils(); // Prohibit instantiation | 55 BalsaHeadersTokenUtils(); // Prohibit instantiation |
56 }; | 56 }; |
57 | 57 |
58 } // namespace net | 58 } // namespace net |
59 | 59 |
60 #endif // NET_TOOLS_BALSA_BALSA_HEADERS_TOKEN_UTILS_H_ | 60 #endif // NET_TOOLS_BALSA_BALSA_HEADERS_TOKEN_UTILS_H_ |
61 | |
OLD | NEW |