| 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 #ifndef CONTENT_CHILD_URL_RESPONSE_BODY_CONSUMER_H_ | 5 #ifndef CONTENT_CHILD_URL_RESPONSE_BODY_CONSUMER_H_ |
| 6 #define CONTENT_CHILD_URL_RESPONSE_BODY_CONSUMER_H_ | 6 #define CONTENT_CHILD_URL_RESPONSE_BODY_CONSUMER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 void OnComplete(const ResourceRequestCompletionStatus& status); | 44 void OnComplete(const ResourceRequestCompletionStatus& status); |
| 45 | 45 |
| 46 // Cancels watching the handle and dispatches an error to the | 46 // Cancels watching the handle and dispatches an error to the |
| 47 // ResourceDispatcher. This function does nothing if the reading is already | 47 // ResourceDispatcher. This function does nothing if the reading is already |
| 48 // cancelled or done. | 48 // cancelled or done. |
| 49 void Cancel(); | 49 void Cancel(); |
| 50 | 50 |
| 51 void SetDefersLoading(); | 51 void SetDefersLoading(); |
| 52 void UnsetDefersLoading(); | 52 void UnsetDefersLoading(); |
| 53 | 53 |
| 54 // The maximal number of bytes consumed in a task. When there are more bytes |
| 55 // in the data pipe, they will be consumed in following tasks. |
| 56 static constexpr uint32_t kMaxNumConsumedBytesInTask = 64 * 1024; |
| 57 |
| 54 private: | 58 private: |
| 55 friend class base::RefCounted<URLResponseBodyConsumer>; | 59 friend class base::RefCounted<URLResponseBodyConsumer>; |
| 56 ~URLResponseBodyConsumer(); | 60 ~URLResponseBodyConsumer(); |
| 57 | 61 |
| 58 class ReceivedData; | 62 class ReceivedData; |
| 59 void Reclaim(uint32_t size); | 63 void Reclaim(uint32_t size); |
| 60 | 64 |
| 61 void OnReadable(MojoResult unused); | 65 void OnReadable(MojoResult unused); |
| 62 void NotifyCompletionIfAppropriate(); | 66 void NotifyCompletionIfAppropriate(); |
| 63 | 67 |
| 64 const int request_id_; | 68 const int request_id_; |
| 65 ResourceDispatcher* resource_dispatcher_; | 69 ResourceDispatcher* resource_dispatcher_; |
| 66 mojo::ScopedDataPipeConsumerHandle handle_; | 70 mojo::ScopedDataPipeConsumerHandle handle_; |
| 67 mojo::Watcher handle_watcher_; | 71 mojo::Watcher handle_watcher_; |
| 68 ResourceRequestCompletionStatus completion_status_; | 72 ResourceRequestCompletionStatus completion_status_; |
| 69 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; | 73 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| 70 | 74 |
| 71 bool has_received_completion_ = false; | 75 bool has_received_completion_ = false; |
| 72 bool has_been_cancelled_ = false; | 76 bool has_been_cancelled_ = false; |
| 73 bool has_seen_end_of_data_; | 77 bool has_seen_end_of_data_; |
| 74 bool is_deferred_ = false; | 78 bool is_deferred_ = false; |
| 75 bool is_in_on_readable_ = false; | 79 bool is_in_on_readable_ = false; |
| 76 | 80 |
| 77 DISALLOW_COPY_AND_ASSIGN(URLResponseBodyConsumer); | 81 DISALLOW_COPY_AND_ASSIGN(URLResponseBodyConsumer); |
| 78 }; | 82 }; |
| 79 | 83 |
| 80 } // namespace content | 84 } // namespace content |
| 81 | 85 |
| 82 #endif // CONTENT_CHILD_URL_RESPONSE_BODY_CONSUMER_H_ | 86 #endif // CONTENT_CHILD_URL_RESPONSE_BODY_CONSUMER_H_ |
| OLD | NEW |