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

Unified Diff: net/quic/quic_utils.cc

Issue 968233004: Land Recent QUIC Changes until 03/02/2015. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cleanup
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_utils.h ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_utils.cc
diff --git a/net/quic/quic_utils.cc b/net/quic/quic_utils.cc
index 17e74618708dafcbd6b97ee81bcca731cf1e0d0c..998f0e0488d6309a492ca70c08eb59a58f19ee28 100644
--- a/net/quic/quic_utils.cc
+++ b/net/quic/quic_utils.cc
@@ -123,15 +123,6 @@ bool QuicUtils::FindMutualTag(const QuicTagVector& our_tags_vector,
}
// static
-void QuicUtils::SerializeUint128(uint128 v, uint8* out) {
- const uint64 lo = Uint128Low64(v);
- const uint64 hi = Uint128High64(v);
- // This assumes that the system is little-endian.
- memcpy(out, &lo, sizeof(lo));
- memcpy(out + sizeof(lo), &hi, sizeof(hi));
-}
-
-// static
void QuicUtils::SerializeUint128Short(uint128 v, uint8* out) {
const uint64 lo = Uint128Low64(v);
const uint64 hi = Uint128High64(v);
@@ -347,11 +338,6 @@ string QuicUtils::StringToHexASCIIDump(StringPiece in_buffer) {
}
// static
-QuicPriority QuicUtils::LowestPriority() {
- return QuicWriteBlockedList::kLowestPriority;
-}
-
-// static
QuicPriority QuicUtils::HighestPriority() {
return QuicWriteBlockedList::kHighestPriority;
}
« no previous file with comments | « net/quic/quic_utils.h ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698