| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |