| 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_reliable_client_stream.h" | 5 #include "net/quic/quic_reliable_client_stream.h" |
| 6 | 6 |
| 7 #include "base/callback_helpers.h" | 7 #include "base/callback_helpers.h" |
| 8 #include "net/base/net_errors.h" | 8 #include "net/base/net_errors.h" |
| 9 #include "net/quic/quic_session.h" | 9 #include "net/quic/quic_session.h" |
| 10 #include "net/quic/quic_write_blocked_list.h" | 10 #include "net/quic/quic_write_blocked_list.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 if (!HasBufferedData()) { | 76 if (!HasBufferedData()) { |
| 77 return OK; | 77 return OK; |
| 78 } | 78 } |
| 79 | 79 |
| 80 callback_ = callback; | 80 callback_ = callback; |
| 81 return ERR_IO_PENDING; | 81 return ERR_IO_PENDING; |
| 82 } | 82 } |
| 83 | 83 |
| 84 void QuicReliableClientStream::SetDelegate( | 84 void QuicReliableClientStream::SetDelegate( |
| 85 QuicReliableClientStream::Delegate* delegate) { | 85 QuicReliableClientStream::Delegate* delegate) { |
| 86 DCHECK((!delegate_ && delegate) || (delegate_ && !delegate)); | 86 DCHECK(!(delegate_ && delegate)); |
| 87 delegate_ = delegate; | 87 delegate_ = delegate; |
| 88 } | 88 } |
| 89 | 89 |
| 90 void QuicReliableClientStream::OnError(int error) { | 90 void QuicReliableClientStream::OnError(int error) { |
| 91 if (delegate_) { | 91 if (delegate_) { |
| 92 QuicReliableClientStream::Delegate* delegate = delegate_; | 92 QuicReliableClientStream::Delegate* delegate = delegate_; |
| 93 delegate_ = nullptr; | 93 delegate_ = nullptr; |
| 94 delegate->OnError(error); | 94 delegate->OnError(error); |
| 95 } | 95 } |
| 96 } | 96 } |
| 97 | 97 |
| 98 bool QuicReliableClientStream::CanWrite(const CompletionCallback& callback) { | 98 bool QuicReliableClientStream::CanWrite(const CompletionCallback& callback) { |
| 99 bool can_write = session()->connection()->CanWrite(HAS_RETRANSMITTABLE_DATA); | 99 bool can_write = session()->connection()->CanWrite(HAS_RETRANSMITTABLE_DATA); |
| 100 if (!can_write) { | 100 if (!can_write) { |
| 101 session()->MarkWriteBlocked(id(), EffectivePriority()); | 101 session()->MarkWriteBlocked(id(), EffectivePriority()); |
| 102 DCHECK(callback_.is_null()); | 102 DCHECK(callback_.is_null()); |
| 103 callback_ = callback; | 103 callback_ = callback; |
| 104 } | 104 } |
| 105 return can_write; | 105 return can_write; |
| 106 } | 106 } |
| 107 | 107 |
| 108 } // namespace net | 108 } // namespace net |
| OLD | NEW |