| Index: content/child/resource_dispatcher.h
|
| diff --git a/content/child/resource_dispatcher.h b/content/child/resource_dispatcher.h
|
| index f7f62ff7a78b141b17936c87272620e995d18db3..40281cf7bd7dbc229a25240ea82bc394691d3485 100644
|
| --- a/content/child/resource_dispatcher.h
|
| +++ b/content/child/resource_dispatcher.h
|
| @@ -27,6 +27,10 @@ namespace blink {
|
| class WebThreadedDataReceiver;
|
| }
|
|
|
| +namespace net {
|
| +struct RedirectInfo;
|
| +}
|
| +
|
| namespace webkit_glue {
|
| class ResourceLoaderBridge;
|
| }
|
| @@ -155,8 +159,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
|
| void OnReceivedResponse(int request_id, const ResourceResponseHead&);
|
| void OnReceivedCachedMetadata(int request_id, const std::vector<char>& data);
|
| void OnReceivedRedirect(int request_id,
|
| - const GURL& new_url,
|
| - const GURL& new_first_party_for_cookies,
|
| + const net::RedirectInfo& redirect_info,
|
| const ResourceResponseHead& response_head);
|
| void OnSetDataBuffer(int request_id,
|
| base::SharedMemoryHandle shm_handle,
|
|
|