| Index: net/quic/quic_utils.cc
|
| diff --git a/net/quic/quic_utils.cc b/net/quic/quic_utils.cc
|
| index 895ca03adb99599cd79ea2e4e0855e7f5e5d5805..30ce56054d499bccdc719c9bd19baa0793a41681 100644
|
| --- a/net/quic/quic_utils.cc
|
| +++ b/net/quic/quic_utils.cc
|
| @@ -13,7 +13,7 @@
|
| #include "base/port.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "base/strings/string_number_conversions.h"
|
| -#include "net/spdy/write_blocked_list.h"
|
| +#include "net/quic/quic_write_blocked_list.h"
|
|
|
| using base::StringPiece;
|
| using std::string;
|
| @@ -286,12 +286,12 @@ string QuicUtils::StringToHexASCIIDump(StringPiece in_buffer) {
|
|
|
| // static
|
| QuicPriority QuicUtils::LowestPriority() {
|
| - return static_cast<QuicPriority>(kLowestPriority);
|
| + return QuicWriteBlockedList::kLowestPriority;
|
| }
|
|
|
| // static
|
| QuicPriority QuicUtils::HighestPriority() {
|
| - return static_cast<QuicPriority>(kHighestPriority);
|
| + return QuicWriteBlockedList::kHighestPriority;
|
| }
|
|
|
| } // namespace net
|
|
|