Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(780)

Side by Side Diff: net/quic/quic_http_utils.cc

Issue 23597045: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged QuicPriority to RequestPriority changes Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/quic/quic_http_utils.h ('k') | net/quic/quic_http_utils_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 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.
4
5 #include "net/quic/quic_http_utils.h"
6
7 namespace net {
8
9 QuicPriority ConvertRequestPriorityToQuicPriority(
10 const RequestPriority priority) {
11 DCHECK_GE(priority, MINIMUM_PRIORITY);
12 DCHECK_LT(priority, NUM_PRIORITIES);
13 return static_cast<QuicPriority>(HIGHEST - priority);
14 }
15
16 NET_EXPORT_PRIVATE RequestPriority ConvertQuicPriorityToRequestPriority(
17 QuicPriority priority) {
18 // Handle invalid values gracefully.
19 return (priority >= 5) ?
20 IDLE : static_cast<RequestPriority>(HIGHEST - priority);
21 }
22
23 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_http_utils.h ('k') | net/quic/quic_http_utils_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698