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

Unified Diff: third_party/WebKit/Source/platform/exported/WebDataConsumerHandle.cpp

Issue 2811463002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/exported (Closed)
Patch Set: rebase Created 3 years, 8 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: third_party/WebKit/Source/platform/exported/WebDataConsumerHandle.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebDataConsumerHandle.cpp b/third_party/WebKit/Source/platform/exported/WebDataConsumerHandle.cpp
index 695fa19279ea9a9654e506edaa63d2a917ec9a59..eefd29a372930dbc80b52139dd2c97bda46b2b1a 100644
--- a/third_party/WebKit/Source/platform/exported/WebDataConsumerHandle.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebDataConsumerHandle.cpp
@@ -13,11 +13,11 @@
namespace blink {
WebDataConsumerHandle::WebDataConsumerHandle() {
- ASSERT(ThreadState::Current());
+ DCHECK(ThreadState::Current());
}
WebDataConsumerHandle::~WebDataConsumerHandle() {
- ASSERT(ThreadState::Current());
+ DCHECK(ThreadState::Current());
}
WebDataConsumerHandle::Result WebDataConsumerHandle::Reader::Read(

Powered by Google App Engine
This is Rietveld 408576698