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

Unified Diff: net/url_request/url_request_http_job.cc

Issue 2103383002: Remove dead debug code from URLRequestContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « net/url_request/url_request_context.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_http_job.cc
diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc
index 336d798a5adf41a06d709ac578c74164926d15f9..e972cafc01163593c071affcc5f2ed492a347de8 100644
--- a/net/url_request/url_request_http_job.cc
+++ b/net/url_request/url_request_http_job.cc
@@ -91,9 +91,7 @@ void LogChannelIDAndCookieStores(const GURL& url,
// There is no ChannelIDStore for this request. This should never happen,
// because we only log if Channel ID was sent.
NO_CHANNEL_ID_STORE = 5,
- // A case where the CookieStore is persistent and the ChannelIDStore is
- // ephemeral, but it has been identified as not being a problem.
- KNOWN_MISMATCH = 6,
+ // Value 6 was removed (KNOWN_MISMATCH).
// Both stores are ephemeral, and the ChannelIDService used when
// establishing the connection is the same one that the CookieStore was
// created to be used with.
@@ -136,8 +134,6 @@ void LogChannelIDAndCookieStores(const GURL& url,
NOTREACHED();
ephemerality = EPHEMERAL_MISMATCH;
}
- } else if (context->has_known_mismatched_cookie_store()) {
- ephemerality = KNOWN_MISMATCH;
} else {
NOTREACHED();
ephemerality = CID_EPHEMERAL_COOKIE_PERSISTENT;
« no previous file with comments | « net/url_request/url_request_context.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698