Make certificate viewer a tab-modal dialog.
[chromium-blink-merge.git] / net / spdy / spdy_protocol.cc
blob0373ab0082ad74eefb3b92986d81ee79c7dfc7b6
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"
7 namespace net {
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) {
16 SetDataDeep(data);
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) {
29 set_slot(slot);
32 SpdyCredentialIR::~SpdyCredentialIR() {}
34 } // namespace