Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(654)

Unified Diff: net/tools/quic/quic_server_session.h

Issue 1539333003: Delete unused methods in QuicServerSession (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@110244865
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_server_session.h
diff --git a/net/tools/quic/quic_server_session.h b/net/tools/quic/quic_server_session.h
index e6eb7844069cc12300077ad6c0cc64729cf5f970..885e05e5881362994a65c38d54defde0a180bde6 100644
--- a/net/tools/quic/quic_server_session.h
+++ b/net/tools/quic/quic_server_session.h
@@ -77,20 +77,6 @@ class QuicServerSession : public QuicSpdySession {
// Override base class to process FEC config received from client.
void OnConfigNegotiated() override;
- bool UsingStatelessRejectsIfPeerSupported() {
- if (GetCryptoStream() == nullptr) {
- return false;
- }
- return GetCryptoStream()->UseStatelessRejectsIfPeerSupported();
- }
-
- bool PeerSupportsStatelessRejects() {
- if (GetCryptoStream() == nullptr) {
- return false;
- }
- return GetCryptoStream()->PeerSupportsStatelessRejects();
- }
-
void set_serving_region(const std::string& serving_region) {
serving_region_ = serving_region;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698