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

Side by Side Diff: net/spdy/core/spdy_alt_svc_wire_format.cc

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « net/spdy/core/spdy_alt_svc_wire_format.h ('k') | net/spdy/core/spdy_alt_svc_wire_format_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698