| Index: net/quic/quic_http_utils.cc
|
| diff --git a/net/quic/quic_http_utils.cc b/net/quic/quic_http_utils.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f89f587c50941ba495c30288fc40aba804e7e9b9
|
| --- /dev/null
|
| +++ b/net/quic/quic_http_utils.cc
|
| @@ -0,0 +1,23 @@
|
| +// Copyright (c) 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.
|
| +
|
| +#include "net/quic/quic_http_utils.h"
|
| +
|
| +namespace net {
|
| +
|
| +QuicPriority ConvertRequestPriorityToQuicPriority(
|
| + const RequestPriority priority) {
|
| + DCHECK_GE(priority, MINIMUM_PRIORITY);
|
| + DCHECK_LT(priority, NUM_PRIORITIES);
|
| + return static_cast<QuicPriority>(HIGHEST - priority);
|
| +}
|
| +
|
| +NET_EXPORT_PRIVATE RequestPriority ConvertQuicPriorityToRequestPriority(
|
| + QuicPriority priority) {
|
| + // Handle invalid values gracefully.
|
| + return (priority >= 5) ?
|
| + IDLE : static_cast<RequestPriority>(HIGHEST - priority);
|
| +}
|
| +
|
| +} // namespace net
|
|
|