1 // Copyright (c) 2012 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.
5 #include "net/spdy/spdy_protocol.h"
9 SpdyFrameWithNameValueBlockIR::SpdyFrameWithNameValueBlockIR(
10 SpdyStreamId stream_id
) : SpdyFrameWithFinIR(stream_id
) {}
12 SpdyFrameWithNameValueBlockIR::~SpdyFrameWithNameValueBlockIR() {}
14 SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id
, const base::StringPiece
& data
)
15 : SpdyFrameWithFinIR(stream_id
) {
19 SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id
)
20 : SpdyFrameWithFinIR(stream_id
) {}
22 SpdyDataIR::~SpdyDataIR() {}
24 SpdySettingsIR::SpdySettingsIR() : clear_settings_(false) {}
26 SpdySettingsIR::~SpdySettingsIR() {}
28 SpdyCredentialIR::SpdyCredentialIR(int16 slot
) {
32 SpdyCredentialIR::~SpdyCredentialIR() {}