Remove Uint64ToString() and Hex() from QuicheTextUtils.

These wrappers have trivial Abseil implementation and keeping them does not add
much value (for example by having a clear name, like
RemoveLeadingAndTrailingWhitespace() which I'm leaving for that reason).

Removing Uint64ToString() removes a cast to uint64_t, but StrCat and
StrAppend are implemented such that this does not change the output.

Inlining these two helper functions allows unfolding some nested StrCat() calls
and using StrAppend() where appropriate.

PiperOrigin-RevId: 367046459
Change-Id: I5e3ae86e38d62bad133bc93ca833c1e3e472f59f
14 files changed
tree: f3a37024f685cf5553eb3a72cf1a691b1e996fe1
  1. common/
  2. epoll_server/
  3. http2/
  4. quic/
  5. spdy/
  6. CONTRIBUTING.md
  7. LICENSE
  8. README.md
README.md

QUICHE

QUICHE (QUIC, Http/2, Etc) is Google‘s implementation of QUIC and related protocols. It powers Chromium as well as Google’s QUIC servers and some other projects. QUICHE is only supported on little-endian platforms.

Code can be viewed in CodeSearch in Quiche and is imported into Chromium.