clang-format QUICHE
Run clang-format on *.h and *.cc file in QUICHE.
PiperOrigin-RevId: 441164393
Change-Id: Id0429dd8c7a9a5b16d858c4d45a37e3567c61fdc
diff --git a/quiche/quic/test_tools/fake_proof_source_handle.h b/quiche/quic/test_tools/fake_proof_source_handle.h
index ac0d184..25a7e27 100644
--- a/quiche/quic/test_tools/fake_proof_source_handle.h
+++ b/quiche/quic/test_tools/fake_proof_source_handle.h
@@ -43,10 +43,8 @@
QuicAsyncStatus SelectCertificate(
const QuicSocketAddress& server_address,
const QuicSocketAddress& client_address,
- absl::string_view ssl_capabilities,
- const std::string& hostname,
- absl::string_view client_hello,
- const std::string& alpn,
+ absl::string_view ssl_capabilities, const std::string& hostname,
+ absl::string_view client_hello, const std::string& alpn,
absl::optional<std::string> alps,
const std::vector<uint8_t>& quic_transport_params,
const absl::optional<std::vector<uint8_t>>& early_data_context,
@@ -68,10 +66,8 @@
struct SelectCertArgs {
SelectCertArgs(QuicSocketAddress server_address,
QuicSocketAddress client_address,
- absl::string_view ssl_capabilities,
- std::string hostname,
- absl::string_view client_hello,
- std::string alpn,
+ absl::string_view ssl_capabilities, std::string hostname,
+ absl::string_view client_hello, std::string alpn,
absl::optional<std::string> alps,
std::vector<uint8_t> quic_transport_params,
absl::optional<std::vector<uint8_t>> early_data_context,
@@ -101,10 +97,8 @@
struct ComputeSignatureArgs {
ComputeSignatureArgs(QuicSocketAddress server_address,
- QuicSocketAddress client_address,
- std::string hostname,
- uint16_t signature_algorithm,
- absl::string_view in,
+ QuicSocketAddress client_address, std::string hostname,
+ uint16_t signature_algorithm, absl::string_view in,
size_t max_signature_size)
: server_address(server_address),
client_address(client_address),
@@ -132,8 +126,7 @@
private:
class PendingOperation {
public:
- PendingOperation(ProofSource* delegate,
- ProofSourceHandleCallback* callback,
+ PendingOperation(ProofSource* delegate, ProofSourceHandleCallback* callback,
Action action)
: delegate_(delegate), callback_(callback), action_(action) {}
virtual ~PendingOperation() = default;
@@ -165,8 +158,7 @@
public:
ComputeSignatureOperation(ProofSource* delegate,
ProofSourceHandleCallback* callback,
- Action action,
- ComputeSignatureArgs args);
+ Action action, ComputeSignatureArgs args);
~ComputeSignatureOperation() override = default;