blob: 874f89f675dc5a03672579e191812de785ebfa4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2016 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.
#include "net/quic/test_tools/mock_quic_spdy_client_stream.h"
using net::QuicClientSession;
namespace net {
namespace test {
MockQuicSpdyClientStream::MockQuicSpdyClientStream(QuicStreamId id,
QuicClientSession* session)
: QuicSpdyClientStream(id, session) {}
MockQuicSpdyClientStream::~MockQuicSpdyClientStream() {}
} // namespace test
} // namespace net
|