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

Side by Side Diff: net/spdy/spdy_frame_reader.h

Issue 14223008: net: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/spdy/spdy_frame_builder.h ('k') | net/spdy/spdy_protocol.h » ('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) 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_SPDY_SPDY_FRAME_READER_H_ 5 #ifndef NET_SPDY_SPDY_FRAME_READER_H_
6 #define NET_SPDY_SPDY_FRAME_READER_H_ 6 #define NET_SPDY_SPDY_FRAME_READER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/string_piece.h" 9 #include "base/strings/string_piece.h"
10 #include "net/base/net_export.h" 10 #include "net/base/net_export.h"
11 11
12 namespace net { 12 namespace net {
13 13
14 // Used for reading SPDY frames. Though there isn't really anything terribly 14 // Used for reading SPDY frames. Though there isn't really anything terribly
15 // SPDY-specific here, it's a helper class that's useful when doing SPDY 15 // SPDY-specific here, it's a helper class that's useful when doing SPDY
16 // framing. 16 // framing.
17 // 17 //
18 // To use, simply construct a SpdyFramerReader using the underlying buffer that 18 // To use, simply construct a SpdyFramerReader using the underlying buffer that
19 // you'd like to read fields from, then call one of the Read*() methods to 19 // you'd like to read fields from, then call one of the Read*() methods to
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 // The length of the data buffer that we're reading from. 114 // The length of the data buffer that we're reading from.
115 const size_t len_; 115 const size_t len_;
116 116
117 // The location of the next read from our data buffer. 117 // The location of the next read from our data buffer.
118 size_t ofs_; 118 size_t ofs_;
119 }; 119 };
120 120
121 } // namespace net 121 } // namespace net
122 122
123 #endif // NET_SPDY_SPDY_FRAME_READER_H_ 123 #endif // NET_SPDY_SPDY_FRAME_READER_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_frame_builder.h ('k') | net/spdy/spdy_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698