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

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

Issue 2919443002: Use IMMEDIATE_CRASH() instead of CRASH() directly (Closed)
Patch Set: Use IMMEDIATE_CRASH() instead of CRASH() directly Created 3 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
Index: third_party/WebKit/Source/platform/wtf/ThreadSpecificWin.cpp
diff --git a/third_party/WebKit/Source/platform/wtf/ThreadSpecificWin.cpp b/third_party/WebKit/Source/platform/wtf/ThreadSpecificWin.cpp
index 0bb950431bab8a355a49bdbdf571c1d214d77361..b54917ece1be9c1dcf122c2d430ebccb7887b546 100644
--- a/third_party/WebKit/Source/platform/wtf/ThreadSpecificWin.cpp
+++ b/third_party/WebKit/Source/platform/wtf/ThreadSpecificWin.cpp
@@ -53,7 +53,7 @@ class PlatformThreadSpecificKey
: destructor_(destructor) {
tls_key_ = TlsAlloc();
if (tls_key_ == TLS_OUT_OF_INDEXES)
- CRASH();
+ IMMEDIATE_CRASH();
}
~PlatformThreadSpecificKey() { TlsFree(tls_key_); }
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/ThreadSpecific.h ('k') | third_party/WebKit/Source/platform/wtf/text/StringImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698