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

Unified Diff: net/quic/core/quic_utils.cc

Issue 2246843005: Remove QuicUtils::ListTags and use ToDebugString() instead. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@129676537
Patch Set: Created 4 years, 4 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/core/quic_utils.h ('k') | net/quic/core/quic_utils_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_utils.cc
diff --git a/net/quic/core/quic_utils.cc b/net/quic/core/quic_utils.cc
index f02adfc2094d071f2cfb9c569e184dae522a7192..25cb2d4436a690f3778c267861aa59df97f9f7aa 100644
--- a/net/quic/core/quic_utils.cc
+++ b/net/quic/core/quic_utils.cc
@@ -381,14 +381,6 @@ QuicTagVector QuicUtils::ParseQuicConnectionOptions(
return options;
}
-string QuicUtils::ListTags(QuicTagValueMap tag_map) {
- string result;
- for (auto entry : tag_map) {
- result.append(TagToString(entry.first) + " ");
- }
- return result;
-}
-
string QuicUtils::PeerAddressChangeTypeToString(PeerAddressChangeType type) {
switch (type) {
RETURN_STRING_LITERAL(NO_CHANGE);
« no previous file with comments | « net/quic/core/quic_utils.h ('k') | net/quic/core/quic_utils_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698