OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/flip/flip_session.h" | 5 #include "net/flip/flip_session.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/rand_util.h" | 10 #include "base/rand_util.h" |
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 return false; | 753 return false; |
754 } | 754 } |
755 | 755 |
756 void FlipStreamImpl::OnAbort() { | 756 void FlipStreamImpl::OnAbort() { |
757 if (delegate_) | 757 if (delegate_) |
758 delegate_->OnClose(net::ERR_ABORTED); | 758 delegate_->OnClose(net::ERR_ABORTED); |
759 } | 759 } |
760 | 760 |
761 } // namespace net | 761 } // namespace net |
762 | 762 |
OLD | NEW |