| Index: chrome/common/resource_dispatcher.cc
|
| ===================================================================
|
| --- chrome/common/resource_dispatcher.cc (revision 9948)
|
| +++ chrome/common/resource_dispatcher.cc (working copy)
|
| @@ -382,7 +382,8 @@
|
| }
|
|
|
| void ResourceDispatcher::OnRequestComplete(int request_id,
|
| - const URLRequestStatus& status) {
|
| + const URLRequestStatus& status,
|
| + const std::string& security_info) {
|
| PendingRequestList::iterator it = pending_requests_.find(request_id);
|
| if (it == pending_requests_.end()) {
|
| // this might happen for kill()ed requests on the webkit end, so perhaps
|
| @@ -414,7 +415,7 @@
|
| // The request ID will be removed from our pending list in the destructor.
|
| // Normally, dispatching this message causes the reference-counted request to
|
| // die immediately.
|
| - peer->OnCompletedRequest(status);
|
| + peer->OnCompletedRequest(status, security_info);
|
|
|
| webkit_glue::NotifyCacheStats();
|
| }
|
|
|