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

Side by Side Diff: net/spdy/spdy_protocol.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_reader.h ('k') | net/spdy/spdy_stream_spdy2_unittest.cc » ('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 // This file contains some protocol structures for use with SPDY 2 and 3 5 // This file contains some protocol structures for use with SPDY 2 and 3
6 // The SPDY 2 spec can be found at: 6 // The SPDY 2 spec can be found at:
7 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft2 7 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft2
8 // The SPDY 3 spec can be found at: 8 // The SPDY 3 spec can be found at:
9 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3 9 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3
10 10
11 #ifndef NET_SPDY_SPDY_PROTOCOL_H_ 11 #ifndef NET_SPDY_SPDY_PROTOCOL_H_
12 #define NET_SPDY_SPDY_PROTOCOL_H_ 12 #define NET_SPDY_SPDY_PROTOCOL_H_
13 13
14 #include <map> 14 #include <map>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "base/basictypes.h" 18 #include "base/basictypes.h"
19 #include "base/compiler_specific.h" 19 #include "base/compiler_specific.h"
20 #include "base/logging.h" 20 #include "base/logging.h"
21 #include "base/memory/scoped_ptr.h" 21 #include "base/memory/scoped_ptr.h"
22 #include "base/string_piece.h" 22 #include "base/strings/string_piece.h"
23 #include "base/sys_byteorder.h" 23 #include "base/sys_byteorder.h"
24 #include "net/base/net_export.h" 24 #include "net/base/net_export.h"
25 #include "net/spdy/spdy_bitmasks.h" 25 #include "net/spdy/spdy_bitmasks.h"
26 26
27 namespace net { 27 namespace net {
28 28
29 // TODO(akalin): Convert this to an enum. 29 // TODO(akalin): Convert this to an enum.
30 const int32 kSpdyVersion2 = 2; 30 const int32 kSpdyVersion2 = 2;
31 const int32 kSpdyVersion3 = 3; 31 const int32 kSpdyVersion3 = 3;
32 const int32 kSpdyVersion4 = 4; 32 const int32 kSpdyVersion4 = 4;
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 701
702 private: 702 private:
703 size_t size_; 703 size_t size_;
704 bool owns_buffer_; 704 bool owns_buffer_;
705 DISALLOW_COPY_AND_ASSIGN(SpdyFrame); 705 DISALLOW_COPY_AND_ASSIGN(SpdyFrame);
706 }; 706 };
707 707
708 } // namespace net 708 } // namespace net
709 709
710 #endif // NET_SPDY_SPDY_PROTOCOL_H_ 710 #endif // NET_SPDY_SPDY_PROTOCOL_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_frame_reader.h ('k') | net/spdy/spdy_stream_spdy2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698