Change FLAGS_max_inbound_header_list_size type to int32_t.

size_t flags cannot be supported on Chromium, because on some platforms it is a
type separate from other integral types, so GetQuicheFlagImpl() would need its
own overload, whereas on other platforms it is an alias of another integral
type, and the overloads would clash with "multiple definition" error.

PiperOrigin-RevId: 389186181
diff --git a/quic/tools/quic_toy_client.cc b/quic/tools/quic_toy_client.cc
index 5cda202..0db266b 100644
--- a/quic/tools/quic_toy_client.cc
+++ b/quic/tools/quic_toy_client.cc
@@ -215,7 +215,7 @@
                               10000,
                               "Max time to wait before handshake completes.");
 
-DEFINE_QUIC_COMMAND_LINE_FLAG(size_t, max_inbound_header_list_size, 128 * 1024,
+DEFINE_QUIC_COMMAND_LINE_FLAG(int32_t, max_inbound_header_list_size, 128 * 1024,
                               "Max inbound header list size. 0 means default.");
 
 namespace quic {