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

Side by Side Diff: net/tools/quic/quic_spdy_client_stream_test.cc

Issue 1893083002: Change scoped_ptr to std::unique_ptr in //net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptr-net-all: iwyu Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/tools/quic/quic_spdy_client_stream.h" 5 #include "net/tools/quic/quic_spdy_client_stream.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "base/strings/string_number_conversions.h" 8 #include "base/strings/string_number_conversions.h"
9 #include "net/quic/quic_utils.h" 9 #include "net/quic/quic_utils.h"
10 #include "net/quic/spdy_utils.h" 10 #include "net/quic/spdy_utils.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 void OnClose(QuicSpdyStream* stream) override { 81 void OnClose(QuicSpdyStream* stream) override {
82 DVLOG(1) << "stream " << stream->id(); 82 DVLOG(1) << "stream " << stream->id();
83 } 83 }
84 }; 84 };
85 85
86 MockConnectionHelper helper_; 86 MockConnectionHelper helper_;
87 StrictMock<MockConnection>* connection_; 87 StrictMock<MockConnection>* connection_;
88 QuicClientPushPromiseIndex push_promise_index_; 88 QuicClientPushPromiseIndex push_promise_index_;
89 89
90 MockQuicClientSession session_; 90 MockQuicClientSession session_;
91 scoped_ptr<QuicSpdyClientStream> stream_; 91 std::unique_ptr<QuicSpdyClientStream> stream_;
92 scoped_ptr<StreamVisitor> stream_visitor_; 92 std::unique_ptr<StreamVisitor> stream_visitor_;
93 BalsaHeaders headers_; 93 BalsaHeaders headers_;
94 string headers_string_; 94 string headers_string_;
95 string body_; 95 string body_;
96 }; 96 };
97 97
98 TEST_F(QuicSpdyClientStreamTest, TestReceivingIllegalResponseStatusCode) { 98 TEST_F(QuicSpdyClientStreamTest, TestReceivingIllegalResponseStatusCode) {
99 headers_.ReplaceOrAppendHeader(":status", "200 ok"); 99 headers_.ReplaceOrAppendHeader(":status", "200 ok");
100 headers_string_ = SpdyBalsaUtils::SerializeResponseHeaders(headers_); 100 headers_string_ = SpdyBalsaUtils::SerializeResponseHeaders(headers_);
101 101
102 stream_->OnStreamHeaders(headers_string_); 102 stream_->OnStreamHeaders(headers_string_);
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 // Now send the body, which should close the stream as the FIN has been 172 // Now send the body, which should close the stream as the FIN has been
173 // received, as well as all data. 173 // received, as well as all data.
174 EXPECT_CALL(session_, CloseStream(stream_->id())); 174 EXPECT_CALL(session_, CloseStream(stream_->id()));
175 stream_->OnStreamFrame( 175 stream_->OnStreamFrame(
176 QuicStreamFrame(stream_->id(), /*fin=*/false, /*offset=*/0, body_)); 176 QuicStreamFrame(stream_->id(), /*fin=*/false, /*offset=*/0, body_));
177 } 177 }
178 178
179 } // namespace 179 } // namespace
180 } // namespace test 180 } // namespace test
181 } // namespace net 181 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/quic/quic_simple_server_session_test.cc ('k') | net/tools/quic/quic_time_wait_list_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698