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

Side by Side Diff: net/quic/chromium/quic_http_stream.cc

Issue 2565563002: Move various Chromium QUIC files to net/quic/chromium where they belong (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/chromium/quic_http_stream.h" 5 #include "net/quic/chromium/quic_http_stream.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/auto_reset.h" 9 #include "base/auto_reset.h"
10 #include "base/callback_helpers.h" 10 #include "base/callback_helpers.h"
11 #include "base/metrics/histogram_macros.h" 11 #include "base/metrics/histogram_macros.h"
12 #include "base/strings/string_split.h" 12 #include "base/strings/string_split.h"
13 #include "net/base/load_flags.h" 13 #include "net/base/load_flags.h"
14 #include "net/base/net_errors.h" 14 #include "net/base/net_errors.h"
15 #include "net/http/http_response_headers.h" 15 #include "net/http/http_response_headers.h"
16 #include "net/http/http_util.h" 16 #include "net/http/http_util.h"
17 #include "net/log/net_log_event_type.h" 17 #include "net/log/net_log_event_type.h"
18 #include "net/log/net_log_source.h" 18 #include "net/log/net_log_source.h"
19 #include "net/quic/chromium/quic_http_utils.h"
19 #include "net/quic/core/quic_client_promised_info.h" 20 #include "net/quic/core/quic_client_promised_info.h"
20 #include "net/quic/core/quic_http_utils.h"
21 #include "net/quic/core/quic_utils.h" 21 #include "net/quic/core/quic_utils.h"
22 #include "net/quic/core/spdy_utils.h" 22 #include "net/quic/core/spdy_utils.h"
23 #include "net/spdy/spdy_frame_builder.h" 23 #include "net/spdy/spdy_frame_builder.h"
24 #include "net/spdy/spdy_framer.h" 24 #include "net/spdy/spdy_framer.h"
25 #include "net/spdy/spdy_http_utils.h" 25 #include "net/spdy/spdy_http_utils.h"
26 #include "net/ssl/ssl_info.h" 26 #include "net/ssl/ssl_info.h"
27 27
28 namespace net { 28 namespace net {
29 29
30 namespace { 30 namespace {
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 closed_is_first_stream_ = stream_->IsFirstStream(); 855 closed_is_first_stream_ = stream_->IsFirstStream();
856 stream_ = nullptr; 856 stream_ = nullptr;
857 857
858 // If |request_body_stream_| is non-NULL, Reset it, to abort any in progress 858 // If |request_body_stream_| is non-NULL, Reset it, to abort any in progress
859 // read. 859 // read.
860 if (request_body_stream_) 860 if (request_body_stream_)
861 request_body_stream_->Reset(); 861 request_body_stream_->Reset();
862 } 862 }
863 863
864 } // namespace net 864 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/chromium/quic_crypto_client_stream_factory.cc ('k') | net/quic/chromium/quic_http_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698