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

Side by Side Diff: net/quic/quic_chromium_client_stream.cc

Issue 1969043002: Fix include path for moved thread_task_runner_handle.h header in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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
« no previous file with comments | « net/quic/quic_chromium_client_session_test.cc ('k') | net/quic/quic_chromium_packet_reader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/quic_chromium_client_stream.h" 5 #include "net/quic/quic_chromium_client_stream.h"
6 6
7 #include "base/callback_helpers.h" 7 #include "base/callback_helpers.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
10 #include "net/base/io_buffer.h" 10 #include "net/base/io_buffer.h"
11 #include "net/base/net_errors.h" 11 #include "net/base/net_errors.h"
12 #include "net/quic/quic_chromium_client_session.h" 12 #include "net/quic/quic_chromium_client_session.h"
13 #include "net/quic/quic_http_utils.h" 13 #include "net/quic/quic_http_utils.h"
14 #include "net/quic/quic_spdy_session.h" 14 #include "net/quic/quic_spdy_session.h"
15 #include "net/quic/quic_write_blocked_list.h" 15 #include "net/quic/quic_write_blocked_list.h"
16 #include "net/quic/spdy_utils.h" 16 #include "net/quic/spdy_utils.h"
17 17
18 namespace net { 18 namespace net {
19 19
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 } else { 252 } else {
253 delegate_tasks_.push_back(closure); 253 delegate_tasks_.push_back(closure);
254 } 254 }
255 } 255 }
256 256
257 void QuicChromiumClientStream::DisableConnectionMigration() { 257 void QuicChromiumClientStream::DisableConnectionMigration() {
258 can_migrate_ = false; 258 can_migrate_ = false;
259 } 259 }
260 260
261 } // namespace net 261 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_chromium_client_session_test.cc ('k') | net/quic/quic_chromium_packet_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698