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

Unified Diff: net/tools/quic/quic_spdy_server_stream.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream_test.cc ('k') | net/tools/quic/quic_spdy_server_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_spdy_server_stream.h
diff --git a/net/tools/quic/quic_spdy_server_stream.h b/net/tools/quic/quic_spdy_server_stream.h
deleted file mode 100644
index 6fa1114342a08b2e3aa73cfcd95b3f742b010b90..0000000000000000000000000000000000000000
--- a/net/tools/quic/quic_spdy_server_stream.h
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_
-#define NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "net/base/io_buffer.h"
-#include "net/quic/quic_data_stream.h"
-#include "net/quic/quic_protocol.h"
-#include "net/tools/balsa/balsa_headers.h"
-
-namespace net {
-
-class QuicSession;
-
-namespace tools {
-
-namespace test {
-class QuicSpdyServerStreamPeer;
-} // namespace test
-
-// All this does right now is aggregate data, and on fin, send an HTTP
-// response.
-class QuicSpdyServerStream : public QuicDataStream {
- public:
- QuicSpdyServerStream(QuicStreamId id, QuicSession* session);
- ~QuicSpdyServerStream() override;
-
- // ReliableQuicStream implementation called by the session when there's
- // data for us.
- uint32 ProcessData(const char* data, uint32 data_len) override;
- void OnFinRead() override;
-
- void ParseRequestHeaders();
-
- private:
- friend class test::QuicSpdyServerStreamPeer;
-
- // Sends a basic 200 response using SendHeaders for the headers and WriteData
- // for the body.
- void SendResponse();
-
- // Sends a basic 500 response using SendHeaders for the headers and WriteData
- // for the body
- void SendErrorResponse();
-
- void SendHeadersAndBody(const BalsaHeaders& response_headers,
- base::StringPiece body);
-
- BalsaHeaders headers_;
- std::string body_;
-
- // Buffer into which response header data is read.
- scoped_refptr<GrowableIOBuffer> read_buf_;
- bool request_headers_received_;
-
- DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream);
-};
-
-} // namespace tools
-} // namespace net
-
-#endif // NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream_test.cc ('k') | net/tools/quic/quic_spdy_server_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698