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

Unified Diff: content/common/resource_dispatcher.h

Issue 10640019: Remove the HANDLED_EXTERNALLY status code. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: revert removing DCHECK from URLRequest::DoCancel Created 8 years, 5 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/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);

Powered by Google App Engine
This is Rietveld 408576698