diff options
Diffstat (limited to 'net/spdy/spdy_protocol.cc')
-rw-r--r-- | net/spdy/spdy_protocol.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net/spdy/spdy_protocol.cc b/net/spdy/spdy_protocol.cc new file mode 100644 index 0000000..9a43c0d --- /dev/null +++ b/net/spdy/spdy_protocol.cc @@ -0,0 +1,24 @@ +// 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. + +#include "net/spdy/spdy_protocol.h" + +namespace net { + +SpdyFrameWithNameValueBlockIR::SpdyFrameWithNameValueBlockIR( + SpdyStreamId stream_id) : SpdyFrameWithFinIR(stream_id) {} + +SpdyFrameWithNameValueBlockIR::~SpdyFrameWithNameValueBlockIR() {} + +SpdySettingsIR::SpdySettingsIR() : clear_settings_(false) {} + +SpdySettingsIR::~SpdySettingsIR() {} + +SpdyCredentialIR::SpdyCredentialIR(int16 slot) { + set_slot(slot); +} + +SpdyCredentialIR::~SpdyCredentialIR() {} + +} // namespace |