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

Side by Side Diff: net/tools/quic/quic_packet_writer_wrapper.cc

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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "net/tools/quic/quic_packet_writer_wrapper.h"
6
7 #include "net/quic/quic_types.h"
8
9 namespace net {
10 namespace tools {
11
12 QuicPacketWriterWrapper::QuicPacketWriterWrapper() {}
13
14 QuicPacketWriterWrapper::QuicPacketWriterWrapper(QuicPacketWriter* writer)
15 : writer_(writer) {}
16
17 QuicPacketWriterWrapper::~QuicPacketWriterWrapper() {}
18
19 WriteResult QuicPacketWriterWrapper::WritePacket(
20 const char* buffer,
21 size_t buf_len,
22 const net::IPAddressNumber& self_address,
23 const net::IPEndPoint& peer_address) {
24 return writer_->WritePacket(buffer, buf_len, self_address, peer_address);
25 }
26
27 bool QuicPacketWriterWrapper::IsWriteBlockedDataBuffered() const {
28 return writer_->IsWriteBlockedDataBuffered();
29 }
30
31 bool QuicPacketWriterWrapper::IsWriteBlocked() const {
32 return writer_->IsWriteBlocked();
33 }
34
35 void QuicPacketWriterWrapper::SetWritable() {
36 writer_->SetWritable();
37 }
38
39 void QuicPacketWriterWrapper::set_writer(QuicPacketWriter* writer) {
40 writer_.reset(writer);
41 }
42
43 QuicPacketWriter* QuicPacketWriterWrapper::release_writer() {
44 return writer_.release();
45 }
46
47 } // namespace tools
48 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/quic/quic_packet_writer_wrapper.h ('k') | net/tools/quic/quic_per_connection_packet_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698