blob: 862b7c61214f886b494bd324ce9e16cf7f8dfae0 [file] [log] [blame]
// Copyright 2013 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.
#ifndef NET_QUIC_QUIC_HTTP_UTILS_H_
#define NET_QUIC_QUIC_HTTP_UTILS_H_
#include "base/values.h"
#include "net/base/net_export.h"
#include "net/base/request_priority.h"
#include "net/quic/quic_protocol.h"
#include "net/spdy/spdy_header_block.h"
namespace net {
NET_EXPORT_PRIVATE QuicPriority ConvertRequestPriorityToQuicPriority(
RequestPriority priority);
NET_EXPORT_PRIVATE RequestPriority ConvertQuicPriorityToRequestPriority(
QuicPriority priority);
// Converts a SpdyHeaderBlock and priority into NetLog event parameters. Caller
// takes ownership of returned value.
NET_EXPORT base::Value* QuicRequestNetLogCallback(
QuicStreamId stream_id,
const SpdyHeaderBlock* headers,
QuicPriority priority,
NetLog::LogLevel log_level);
} // namespace net
#endif // NET_QUIC_QUIC_HTTP_UTILS_H_