Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1778)

Unified Diff: content/browser/renderer_host/resource_dispatcher_host_impl.cc

Issue 10640019: Remove the HANDLED_EXTERNALLY status code. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: hack, hack, hack Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()));
}

Powered by Google App Engine
This is Rietveld 408576698