Index: content/common/resource_dispatcher.h |
diff --git a/content/common/resource_dispatcher.h b/content/common/resource_dispatcher.h |
index d3decbec48b002d2ce6a7cf6de3ba9f389108bd6..9c8b929944893790b9700e9000a2f9b9a772bbd4 100644 |
--- a/content/common/resource_dispatcher.h |
+++ b/content/common/resource_dispatcher.h |
@@ -94,6 +94,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener { |
ResourceType::Type resource_type; |
MessageQueue deferred_message_queue; |
bool is_deferred; |
+ bool is_handled_externally; |
GURL url; |
linked_ptr<IPC::Message> pending_redirect_message; |
base::TimeTicks request_start; |
@@ -134,7 +135,8 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener { |
int data_len); |
void OnRequestComplete( |
int request_id, |
- const net::URLRequestStatus& status, |
+ int error_code, |
+ bool handled_externally, |
const std::string& security_info, |
const base::TimeTicks& completion_time); |