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

Unified Diff: content/public/common/common_param_traits.cc

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/public/common/common_param_traits.cc
diff --git a/content/public/common/common_param_traits.cc b/content/public/common/common_param_traits.cc
index 656ad68c7607760c088f7aac32376e53fc4ef4be..abfc31853ec4fc226e5f31ca7d3edd043976ac69 100644
--- a/content/public/common/common_param_traits.cc
+++ b/content/public/common/common_param_traits.cc
@@ -98,9 +98,6 @@ void ParamTraits<net::URLRequestStatus>::Log(const param_type& p,
case net::URLRequestStatus::IO_PENDING:
status = "IO_PENDING ";
break;
- case net::URLRequestStatus::HANDLED_EXTERNALLY:
- status = "HANDLED_EXTERNALLY";
- break;
case net::URLRequestStatus::CANCELED:
status = "CANCELED";
break;

Powered by Google App Engine
This is Rietveld 408576698