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

Unified Diff: net/http/http_stream_factory_impl_unittest.cc

Issue 2805043004: Add a GetAlternativeService method to HttpStream to return any (Closed)
Patch Set: Created 3 years, 8 months 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
Index: net/http/http_stream_factory_impl_unittest.cc
diff --git a/net/http/http_stream_factory_impl_unittest.cc b/net/http/http_stream_factory_impl_unittest.cc
index 2ac222bf871e07b90806434a483ab563b5b75e3a..833c4292e1352f52144c496f9814d7986ee1fcde 100644
--- a/net/http/http_stream_factory_impl_unittest.cc
+++ b/net/http/http_stream_factory_impl_unittest.cc
@@ -127,6 +127,10 @@ class MockWebSocketHandshakeStream : public WebSocketHandshakeStreamBase {
bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override {
return false;
}
+ bool GetAlternativeService(
+ AlternativeService* alternative_service) const override {
+ return false;
+ }
void GetSSLInfo(SSLInfo* ssl_info) override {}
void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override {}
bool GetRemoteEndpoint(IPEndPoint* endpoint) override { return false; }

Powered by Google App Engine
This is Rietveld 408576698