| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 #include "net/spdy/spdy_alt_svc_wire_format.h" | 5 #include "net/spdy/core/spdy_alt_svc_wire_format.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cctype> | 8 #include <cctype> |
| 9 #include <limits> | 9 #include <limits> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "net/spdy/platform/api/spdy_string_utils.h" | 12 #include "net/spdy/platform/api/spdy_string_utils.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 | 15 |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 | 348 |
| 349 // static | 349 // static |
| 350 bool SpdyAltSvcWireFormat::ParsePositiveInteger32( | 350 bool SpdyAltSvcWireFormat::ParsePositiveInteger32( |
| 351 SpdyStringPiece::const_iterator c, | 351 SpdyStringPiece::const_iterator c, |
| 352 SpdyStringPiece::const_iterator end, | 352 SpdyStringPiece::const_iterator end, |
| 353 uint32_t* value) { | 353 uint32_t* value) { |
| 354 return ParsePositiveIntegerImpl<uint32_t>(c, end, value); | 354 return ParsePositiveIntegerImpl<uint32_t>(c, end, value); |
| 355 } | 355 } |
| 356 | 356 |
| 357 } // namespace net | 357 } // namespace net |
| OLD | NEW |