LSC: Replace uses of `int64` with `int64_t` and similar integer type aliases.

This LSC is part of an effort described in go/totw/190 to delete
third_party/absl/base/integral_types.h, and improve consistency between google3
and the external C++ community.

This change also replaces uses of other symbols defined in
third_party/absl/base/integral_types.h. For instance, `kint64max` will be
replaced with `std::numeric_limits<int64_t>::max()`.

For documentation regarding this LSC, see go/remove-integral-types-lsc.
For historical background, see go/remove-integral-types.

Tested:
    Some test failures are present, but the CL author has decided to mail the change anyway
PiperOrigin-RevId: 379611688
1 file changed
tree: 0e972dd4c9ca91b117264423586061d593ffd9e4
  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.