chromium/net/third_party/quiche/src/quiche/quic/core/frames/quic_window_update_frame.cc

// 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 "quiche/quic/core/frames/quic_window_update_frame.h"

#include <ostream>

#include "quiche/quic/core/quic_types.h"

namespace quic {

QuicWindowUpdateFrame::QuicWindowUpdateFrame()
    :{}

QuicWindowUpdateFrame::QuicWindowUpdateFrame(
    QuicControlFrameId control_frame_id, QuicStreamId stream_id,
    QuicByteCount max_data)
    :{}

std::ostream& operator<<(std::ostream& os,
                         const QuicWindowUpdateFrame& window_update_frame) {}

bool QuicWindowUpdateFrame::operator==(const QuicWindowUpdateFrame& rhs) const {}

bool QuicWindowUpdateFrame::operator!=(const QuicWindowUpdateFrame& rhs) const {}

}  // namespace quic