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

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

Issue 2515873002: Delete unused HexDecode method. No behavior change. (Closed)
Patch Set: Created 4 years, 1 month 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') | no next file » | 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 aa6dd63fd22cfdcd96e82ea78f0b1f36d8f71d27..877c1ea318e5906b7348203668163044a457a017 100644
--- a/net/quic/core/quic_utils.cc
+++ b/net/quic/core/quic_utils.cc
@@ -455,10 +455,6 @@ string QuicUtils::HexEncode(StringPiece data) {
return ::base::HexEncode(data.data(), data.size());
}
-string QuicUtils::HexDecode(const char* data, size_t length) {
- return HexDecode(StringPiece(data, length));
-}
-
string QuicUtils::HexDecode(StringPiece data) {
if (data.empty())
return "";
« no previous file with comments | « net/quic/core/quic_utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698