OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/quic/quic_client_promised_info.h" | 5 #include "net/quic/core/quic_client_promised_info.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
11 #include "net/gfe2/balsa_headers.h" | 11 #include "net/gfe2/balsa_headers.h" |
12 #include "net/quic/quic_client.h" | 12 #include "net/quic/core/quic_client.h" |
13 #include "net/quic/quic_client_session.h" | 13 #include "net/quic/core/quic_client_session.h" |
14 #include "net/quic/quic_spdy_client_stream.h" | 14 #include "net/quic/core/quic_spdy_client_stream.h" |
15 #include "net/quic/quic_utils.h" | 15 #include "net/quic/core/quic_utils.h" |
16 #include "net/quic/spdy_balsa_utils.h" | 16 #include "net/quic/core/spdy_balsa_utils.h" |
17 #include "net/quic/spdy_utils.h" | 17 #include "net/quic/core/spdy_utils.h" |
18 #include "net/quic/test_tools/crypto_test_utils.h" | 18 #include "net/quic/test_tools/crypto_test_utils.h" |
19 #include "net/quic/test_tools/quic_test_utils.h" | 19 #include "net/quic/test_tools/quic_test_utils.h" |
20 #include "net/util/ipaddress.h" | 20 #include "net/util/ipaddress.h" |
21 #include "testing/base/public/gunit.h" | 21 #include "testing/base/public/gunit.h" |
22 | 22 |
23 using SpdyHeaderBlock; | 23 using SpdyHeaderBlock; |
24 using BalsaHeaders; | 24 using BalsaHeaders; |
25 using testing::StrictMock; | 25 using testing::StrictMock; |
26 | 26 |
27 namespace net { | 27 namespace net { |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 EXPECT_FALSE(delegate.rendezvous_fired()); | 371 EXPECT_FALSE(delegate.rendezvous_fired()); |
372 EXPECT_EQ(delegate.rendezvous_stream(), nullptr); | 372 EXPECT_EQ(delegate.rendezvous_stream(), nullptr); |
373 | 373 |
374 // Promise is gone | 374 // Promise is gone |
375 EXPECT_EQ(session_.GetPromisedById(promise_id_), nullptr); | 375 EXPECT_EQ(session_.GetPromisedById(promise_id_), nullptr); |
376 } | 376 } |
377 | 377 |
378 } // namespace | 378 } // namespace |
379 } // namespace test | 379 } // namespace test |
380 } // namespace net | 380 } // namespace net |
OLD | NEW |