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

Side by Side Diff: net/quic/quic_spdy_server_stream.h

Issue 763833003: Remove using namespace in net/quic/quic_stream_sequencer.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix missing part device_cloud_policy_manager_chromeos_unittest.cc Created 6 years 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
« no previous file with comments | « net/quic/quic_session_test.cc ('k') | net/quic/quic_stream_factory.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_QUIC_QUIC_SPDY_SERVER_STREAM_H_ 5 #ifndef NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_
6 #define NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ 6 #define NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 void SendResponse(); 44 void SendResponse();
45 45
46 // Sends a basic 500 response using SendHeaders for the headers and WriteData 46 // Sends a basic 500 response using SendHeaders for the headers and WriteData
47 // for the body 47 // for the body
48 void SendErrorResponse(); 48 void SendErrorResponse();
49 49
50 void SendHeadersAndBody(const HttpResponseHeaders& response_headers, 50 void SendHeadersAndBody(const HttpResponseHeaders& response_headers,
51 base::StringPiece body); 51 base::StringPiece body);
52 52
53 SpdyHeaderBlock headers_; 53 SpdyHeaderBlock headers_;
54 string body_; 54 std::string body_;
55 GURL request_url_; 55 GURL request_url_;
56 56
57 // Buffer into which response header data is read. 57 // Buffer into which response header data is read.
58 scoped_refptr<GrowableIOBuffer> read_buf_; 58 scoped_refptr<GrowableIOBuffer> read_buf_;
59 bool request_headers_received_; 59 bool request_headers_received_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream); 61 DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream);
62 }; 62 };
63 63
64 } // namespace net 64 } // namespace net
65 65
66 #endif // NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ 66 #endif // NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_
OLDNEW
« no previous file with comments | « net/quic/quic_session_test.cc ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698