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

Unified Diff: third_party/WebKit/Source/platform/wtf/WTF.cpp

Issue 2833123002: Replace ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/wtf (Closed)
Patch Set: wtf 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/wtf/WTF.cpp
diff --git a/third_party/WebKit/Source/platform/wtf/WTF.cpp b/third_party/WebKit/Source/platform/wtf/WTF.cpp
index 6dd0b6c9aa017da7751416f1360ef35610226f0d..72217adf65d85e9443ca10ca5710d3c66f4d91a2 100644
--- a/third_party/WebKit/Source/platform/wtf/WTF.cpp
+++ b/third_party/WebKit/Source/platform/wtf/WTF.cpp
@@ -64,7 +64,7 @@ void Initialize(void (*call_on_main_thread_function)(MainThreadFunction,
void*)) {
// WTF, and Blink in general, cannot handle being re-initialized.
// Make that explicit here.
- RELEASE_ASSERT(!g_initialized);
+ CHECK(!g_initialized);
g_initialized = true;
InitializeCurrentThread();
g_main_thread_identifier = CurrentThread();
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/Vector.h ('k') | third_party/WebKit/Source/platform/wtf/allocator/Partitions.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698