| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "content/child/url_response_body_consumer.h" | 5 #include "content/child/url_response_body_consumer.h" |
| 6 | 6 |
| 7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 URLResponseBodyConsumer::URLResponseBodyConsumer( | 43 URLResponseBodyConsumer::URLResponseBodyConsumer( |
| 44 int request_id, | 44 int request_id, |
| 45 ResourceDispatcher* resource_dispatcher, | 45 ResourceDispatcher* resource_dispatcher, |
| 46 mojo::ScopedDataPipeConsumerHandle handle, | 46 mojo::ScopedDataPipeConsumerHandle handle, |
| 47 scoped_refptr<base::SingleThreadTaskRunner> task_runner) | 47 scoped_refptr<base::SingleThreadTaskRunner> task_runner) |
| 48 : request_id_(request_id), | 48 : request_id_(request_id), |
| 49 resource_dispatcher_(resource_dispatcher), | 49 resource_dispatcher_(resource_dispatcher), |
| 50 handle_(std::move(handle)), | 50 handle_(std::move(handle)), |
| 51 handle_watcher_(task_runner), | 51 handle_watcher_(FROM_HERE, task_runner), |
| 52 task_runner_(task_runner), | 52 task_runner_(task_runner), |
| 53 has_seen_end_of_data_(!handle_.is_valid()) { | 53 has_seen_end_of_data_(!handle_.is_valid()) { |
| 54 handle_watcher_.Start( | 54 handle_watcher_.Start( |
| 55 handle_.get(), MOJO_HANDLE_SIGNAL_READABLE, | 55 handle_.get(), MOJO_HANDLE_SIGNAL_READABLE, |
| 56 base::Bind(&URLResponseBodyConsumer::OnReadable, base::Unretained(this))); | 56 base::Bind(&URLResponseBodyConsumer::OnReadable, base::Unretained(this))); |
| 57 task_runner_->PostTask( | 57 task_runner_->PostTask( |
| 58 FROM_HERE, base::Bind(&URLResponseBodyConsumer::OnReadable, AsWeakPtr(), | 58 FROM_HERE, base::Bind(&URLResponseBodyConsumer::OnReadable, AsWeakPtr(), |
| 59 MOJO_RESULT_OK)); | 59 MOJO_RESULT_OK)); |
| 60 } | 60 } |
| 61 | 61 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 return; | 165 return; |
| 166 // Cancel this instance in order not to notify twice. | 166 // Cancel this instance in order not to notify twice. |
| 167 Cancel(); | 167 Cancel(); |
| 168 | 168 |
| 169 resource_dispatcher_->DispatchMessage( | 169 resource_dispatcher_->DispatchMessage( |
| 170 ResourceMsg_RequestComplete(request_id_, completion_status_)); | 170 ResourceMsg_RequestComplete(request_id_, completion_status_)); |
| 171 // |this| may be deleted. | 171 // |this| may be deleted. |
| 172 } | 172 } |
| 173 | 173 |
| 174 } // namespace content | 174 } // namespace content |
| OLD | NEW |