| OLD | NEW |
| 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_HTTP_HTTP_UTIL_H_ | 5 #ifndef NET_HTTP_HTTP_UTIL_H_ |
| 6 #define NET_HTTP_HTTP_UTIL_H_ | 6 #define NET_HTTP_HTTP_UTIL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 12 #include "base/strings/string_tokenizer.h" | 14 #include "base/strings/string_tokenizer.h" |
| 13 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 14 #include "net/base/net_export.h" | 16 #include "net/base/net_export.h" |
| 15 #include "net/http/http_byte_range.h" | 17 #include "net/http/http_byte_range.h" |
| 16 #include "net/http/http_version.h" | 18 #include "net/http/http_version.h" |
| 17 #include "url/gurl.h" | 19 #include "url/gurl.h" |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 | 385 |
| 384 // True if values are required for each name/value pair; false if a | 386 // True if values are required for each name/value pair; false if a |
| 385 // name is permitted to appear without a corresponding value. | 387 // name is permitted to appear without a corresponding value. |
| 386 bool values_optional_; | 388 bool values_optional_; |
| 387 }; | 389 }; |
| 388 }; | 390 }; |
| 389 | 391 |
| 390 } // namespace net | 392 } // namespace net |
| 391 | 393 |
| 392 #endif // NET_HTTP_HTTP_UTIL_H_ | 394 #endif // NET_HTTP_HTTP_UTIL_H_ |
| OLD | NEW |