gfe-relnote: Rename quic::ProofSource::SessionTicketCrypter to GetTicketCrypter. No behavior change.
PiperOrigin-RevId: 308668421
Change-Id: I8f7e6a426e4d1131097c5ee6b0f6e2959ab81974
diff --git a/quic/test_tools/failing_proof_source.h b/quic/test_tools/failing_proof_source.h
index 69a3e7a..1ce7f72 100644
--- a/quic/test_tools/failing_proof_source.h
+++ b/quic/test_tools/failing_proof_source.h
@@ -31,7 +31,7 @@
quiche::QuicheStringPiece in,
std::unique_ptr<SignatureCallback> callback) override;
- TicketCrypter* SessionTicketCrypter() override { return nullptr; }
+ TicketCrypter* GetTicketCrypter() override { return nullptr; }
};
} // namespace test
diff --git a/quic/test_tools/fake_proof_source.cc b/quic/test_tools/fake_proof_source.cc
index 3763bcc..35c81d5 100644
--- a/quic/test_tools/fake_proof_source.cc
+++ b/quic/test_tools/fake_proof_source.cc
@@ -113,11 +113,11 @@
delegate_.get()));
}
-ProofSource::TicketCrypter* FakeProofSource::SessionTicketCrypter() {
+ProofSource::TicketCrypter* FakeProofSource::GetTicketCrypter() {
if (ticket_crypter_) {
return ticket_crypter_.get();
}
- return delegate_->SessionTicketCrypter();
+ return delegate_->GetTicketCrypter();
}
void FakeProofSource::SetTicketCrypter(
diff --git a/quic/test_tools/fake_proof_source.h b/quic/test_tools/fake_proof_source.h
index c179f59..35e5c5e 100644
--- a/quic/test_tools/fake_proof_source.h
+++ b/quic/test_tools/fake_proof_source.h
@@ -21,7 +21,7 @@
// asynchronously, and allow the caller to see that the call is pending and
// resume the operation at the caller's choosing. FakeProofSource also allows
// the caller to replace the TicketCrypter provided by
-// FakeProofSource::SessionTicketCrypter.
+// FakeProofSource::GetTicketCrypter.
class FakeProofSource : public ProofSource {
public:
FakeProofSource();
@@ -49,7 +49,7 @@
uint16_t signature_algorithm,
quiche::QuicheStringPiece in,
std::unique_ptr<ProofSource::SignatureCallback> callback) override;
- TicketCrypter* SessionTicketCrypter() override;
+ TicketCrypter* GetTicketCrypter() override;
// Sets the TicketCrypter to use. If nullptr, the TicketCrypter from
// ProofSourceForTesting will be returned instead.