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 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading | 5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading |
6 | 6 |
7 #ifndef CONTENT_CHILD_RESOURCE_DISPATCHER_H_ | 7 #ifndef CONTENT_CHILD_RESOURCE_DISPATCHER_H_ |
8 #define CONTENT_CHILD_RESOURCE_DISPATCHER_H_ | 8 #define CONTENT_CHILD_RESOURCE_DISPATCHER_H_ |
9 | 9 |
10 #include <deque> | 10 #include <deque> |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 // Indicates the priority of the specified request changed. | 84 // Indicates the priority of the specified request changed. |
85 void DidChangePriority(int request_id, | 85 void DidChangePriority(int request_id, |
86 net::RequestPriority new_priority, | 86 net::RequestPriority new_priority, |
87 int intra_priority_value); | 87 int intra_priority_value); |
88 | 88 |
89 // The provided data receiver will receive incoming resource data rather | 89 // The provided data receiver will receive incoming resource data rather |
90 // than the resource bridge. | 90 // than the resource bridge. |
91 bool AttachThreadedDataReceiver( | 91 bool AttachThreadedDataReceiver( |
92 int request_id, blink::WebThreadedDataReceiver* threaded_data_receiver); | 92 int request_id, blink::WebThreadedDataReceiver* threaded_data_receiver); |
93 | 93 |
| 94 // If we have a ThreadedDataProvider attached, an OnRequestComplete message |
| 95 // will get bounced via the background thread and then passed to this function |
| 96 // to resume processing. |
| 97 void CompletedRequestAfterBackgroundThreadFlush( |
| 98 int request_id, |
| 99 const ResourceMsg_RequestCompleteData& request_complete_data, |
| 100 const base::TimeTicks& renderer_completion_time); |
| 101 |
94 IPC::Sender* message_sender() const { return message_sender_; } | 102 IPC::Sender* message_sender() const { return message_sender_; } |
95 | 103 |
96 // This does not take ownership of the delegate. It is expected that the | 104 // This does not take ownership of the delegate. It is expected that the |
97 // delegate have a longer lifetime than the ResourceDispatcher. | 105 // delegate have a longer lifetime than the ResourceDispatcher. |
98 void set_delegate(ResourceDispatcherDelegate* delegate) { | 106 void set_delegate(ResourceDispatcherDelegate* delegate) { |
99 delegate_ = delegate; | 107 delegate_ = delegate; |
100 } | 108 } |
101 | 109 |
102 // Remembers IO thread timestamp for next resource message. | 110 // Remembers IO thread timestamp for next resource message. |
103 void set_io_timestamp(base::TimeTicks io_timestamp) { | 111 void set_io_timestamp(base::TimeTicks io_timestamp) { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; | 234 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; |
227 | 235 |
228 base::WeakPtrFactory<ResourceDispatcher> weak_factory_; | 236 base::WeakPtrFactory<ResourceDispatcher> weak_factory_; |
229 | 237 |
230 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcher); | 238 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcher); |
231 }; | 239 }; |
232 | 240 |
233 } // namespace content | 241 } // namespace content |
234 | 242 |
235 #endif // CONTENT_CHILD_RESOURCE_DISPATCHER_H_ | 243 #endif // CONTENT_CHILD_RESOURCE_DISPATCHER_H_ |
OLD | NEW |