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

Unified Diff: net/http/http_stream_factory_impl_job.cc

Issue 274403003: Change some DCHECKs into CHECKs to track down a crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_stream_factory_impl_job.cc
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
index 8cd2de0dbdf2a48d729226f74da1c951d6475426..6bba98caafc967a4b9b5792c5345693d61de5bc8 100644
--- a/net/http/http_stream_factory_impl_job.cc
+++ b/net/http/http_stream_factory_impl_job.cc
@@ -475,9 +475,9 @@ int HttpStreamFactoryImpl::Job::RunLoop(int result) {
switch (result) {
case ERR_PROXY_AUTH_REQUESTED: {
- DCHECK(connection_.get());
- DCHECK(connection_->socket());
- DCHECK(establishing_tunnel_);
+ CHECK(connection_.get());
+ CHECK(connection_->socket());
+ CHECK(establishing_tunnel_);
next_state_ = STATE_WAITING_USER_ACTION;
ProxyClientSocket* proxy_socket =
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698