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

Unified Diff: net/socket/ssl_client_socket_unittest.cc

Issue 2235973002: Add a SetDoNotFragment() method to DatagramSocket, and call this for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Blimp Created 4 years, 4 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/socket/ssl_client_socket_unittest.cc
diff --git a/net/socket/ssl_client_socket_unittest.cc b/net/socket/ssl_client_socket_unittest.cc
index 06a241e4c920aadac62af434aebdda63f965ab36..771415d024cfc0e83a8168bfb0e06f5ff7cbe0f7 100644
--- a/net/socket/ssl_client_socket_unittest.cc
+++ b/net/socket/ssl_client_socket_unittest.cc
@@ -144,6 +144,9 @@ class WrappedStreamSocket : public StreamSocket {
int SetSendBufferSize(int32_t size) override {
return transport_->SetSendBufferSize(size);
}
+ int SetDoNotFragment(bool do_not_fragment) override {
+ return transport_->SetDoNotFragment(do_not_fragment);
+ }
protected:
std::unique_ptr<StreamSocket> transport_;

Powered by Google App Engine
This is Rietveld 408576698