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

Unified Diff: net/tools/quic/quic_spdy_client_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_socket_utils.cc ('k') | net/tools/quic/quic_spdy_client_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_client_stream.h
diff --git a/net/tools/quic/quic_spdy_client_stream.h b/net/tools/quic/quic_spdy_client_stream.h
deleted file mode 100644
index 466279a178a35095ed01c83ccdd476001ddfa9ec..0000000000000000000000000000000000000000
--- a/net/tools/quic/quic_spdy_client_stream.h
+++ /dev/null
@@ -1,90 +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_CLIENT_STREAM_H_
-#define NET_TOOLS_QUIC_QUIC_SPDY_CLIENT_STREAM_H_
-
-#include <sys/types.h>
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/strings/string_piece.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_frame.h"
-#include "net/tools/balsa/balsa_headers.h"
-
-namespace net {
-
-namespace tools {
-
-class QuicClientSession;
-
-// All this does right now is send an SPDY request, and aggregate the
-// SPDY response.
-class QuicSpdyClientStream : public QuicDataStream {
- public:
- QuicSpdyClientStream(QuicStreamId id, QuicClientSession* session);
- ~QuicSpdyClientStream() override;
-
- // Override the base class to close the write side as soon as we get a
- // response.
- // SPDY/HTTP does not support bidirectional streaming.
- void OnStreamFrame(const QuicStreamFrame& frame) override;
-
- // Override the base class to store the size of the headers.
- void OnStreamHeadersComplete(bool fin, size_t frame_len) 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;
-
- // Serializes the headers and body, sends it to the server, and
- // returns the number of bytes sent.
- ssize_t SendRequest(const BalsaHeaders& headers,
- base::StringPiece body,
- bool fin);
-
- // Sends body data to the server, or buffers if it can't be sent immediately.
- void SendBody(const std::string& data, bool fin);
- // As above, but |delegate| will be notified once |data| is ACKed.
- void SendBody(const std::string& data,
- bool fin,
- QuicAckNotifier::DelegateInterface* delegate);
-
- // Returns the response data.
- const std::string& data() { return data_; }
-
- // Returns whatever headers have been received for this stream.
- const BalsaHeaders& headers() { return headers_; }
-
- size_t header_bytes_read() const { return header_bytes_read_; }
-
- size_t header_bytes_written() const { return header_bytes_written_; }
-
- // While the server's set_priority shouldn't be called externally, the creator
- // of client-side streams should be able to set the priority.
- using QuicDataStream::set_priority;
-
- private:
- int ParseResponseHeaders();
-
- BalsaHeaders headers_;
- std::string data_;
-
- scoped_refptr<GrowableIOBuffer> read_buf_;
- bool response_headers_received_;
- size_t header_bytes_read_;
- size_t header_bytes_written_;
-
- DISALLOW_COPY_AND_ASSIGN(QuicSpdyClientStream);
-};
-
-} // namespace tools
-} // namespace net
-
-#endif // NET_TOOLS_QUIC_QUIC_SPDY_CLIENT_STREAM_H_
« no previous file with comments | « net/tools/quic/quic_socket_utils.cc ('k') | net/tools/quic/quic_spdy_client_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698