| Index: chrome/browser/renderer_host/async_resource_handler.cc
|
| ===================================================================
|
| --- chrome/browser/renderer_host/async_resource_handler.cc (revision 9948)
|
| +++ chrome/browser/renderer_host/async_resource_handler.cc (working copy)
|
| @@ -116,10 +116,14 @@
|
| return true;
|
| }
|
|
|
| -bool AsyncResourceHandler::OnResponseCompleted(int request_id,
|
| - const URLRequestStatus& status) {
|
| +bool AsyncResourceHandler::OnResponseCompleted(
|
| + int request_id,
|
| + const URLRequestStatus& status,
|
| + const std::string& security_info) {
|
| receiver_->Send(new ViewMsg_Resource_RequestComplete(routing_id_,
|
| - request_id, status));
|
| + request_id,
|
| + status,
|
| + security_info));
|
|
|
| // If we still have a read buffer, then see about caching it for later...
|
| if (spare_read_buffer_) {
|
|
|