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

Unified Diff: third_party/WebKit/Source/core/fetch/RawResource.cpp

Issue 2288193002: Supress CHECK() in RawResourceClientStateChecker::responseReceived() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use DCHECK Created 4 years, 4 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: third_party/WebKit/Source/core/fetch/RawResource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/RawResource.cpp b/third_party/WebKit/Source/core/fetch/RawResource.cpp
index a822dba21254ade52f53d079cef7960736f1ba74..698cc0dda42ec055a3455b3465588fbb452f6b9f 100644
--- a/third_party/WebKit/Source/core/fetch/RawResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/RawResource.cpp
@@ -299,7 +299,9 @@ void RawResourceClientStateChecker::dataSent()
void RawResourceClientStateChecker::responseReceived()
{
- SECURITY_CHECK(m_state == Started);
+ // TODO(hiroshige): Temporarily we use DCHECK() here instead of CHECK(),
+ // due to crbug.com/640960.
+ SECURITY_DCHECK(m_state == Started);
m_state = ResponseReceived;
}
« 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