| Index: content/browser/renderer_host/resource_dispatcher_host_impl.cc
|
| diff --git a/content/browser/renderer_host/resource_dispatcher_host_impl.cc b/content/browser/renderer_host/resource_dispatcher_host_impl.cc
|
| index 95148456e5c2256074cc41ef2566160a342e31d6..ae90bc6e97d7784e17379823aa49c89fe08bba88 100644
|
| --- a/content/browser/renderer_host/resource_dispatcher_host_impl.cc
|
| +++ b/content/browser/renderer_host/resource_dispatcher_host_impl.cc
|
| @@ -130,6 +130,7 @@ void AbortRequestBeforeItStarts(ResourceMessageFilter* filter,
|
| if (sync_result) {
|
| SyncLoadResult result;
|
| result.status = status;
|
| + result.handled_externally = false;
|
| ResourceHostMsg_SyncLoad::WriteReplyParams(sync_result, result);
|
| filter->Send(sync_result);
|
| } else {
|
| @@ -138,6 +139,7 @@ void AbortRequestBeforeItStarts(ResourceMessageFilter* filter,
|
| route_id,
|
| request_id,
|
| status,
|
| + false,
|
| std::string(), // No security info needed, connection not established.
|
| base::TimeTicks()));
|
| }
|
|
|