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

Unified Diff: third_party/WebKit/Source/web/WebArrayBufferConverter.cpp

Issue 1839643009: RELEASE_ASSERT -> CHECK and ASSERT -> DCHECK in web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Return DCHECK_IS_ON checks. Created 4 years, 9 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 | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/Source/web/WebBlob.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebArrayBufferConverter.cpp
diff --git a/third_party/WebKit/Source/web/WebArrayBufferConverter.cpp b/third_party/WebKit/Source/web/WebArrayBufferConverter.cpp
index 7179ad58f38fcb90b3663e992eeae27163ad78bb..b25e409e0cd21cb5b01ac76f9e93524b28ade8c4 100644
--- a/third_party/WebKit/Source/web/WebArrayBufferConverter.cpp
+++ b/third_party/WebKit/Source/web/WebArrayBufferConverter.cpp
@@ -38,7 +38,7 @@ v8::Local<v8::Value> WebArrayBufferConverter::toV8Value(WebArrayBuffer* buffer,
{
// We no longer use |creationContext| because it's often misused and points
// to a context faked by user script.
- ASSERT(creationContext->CreationContext() == isolate->GetCurrentContext());
+ DCHECK(creationContext->CreationContext() == isolate->GetCurrentContext());
if (!buffer)
return v8::Local<v8::Value>();
return toV8(PassRefPtr<DOMArrayBuffer>(*buffer), isolate->GetCurrentContext()->Global(), isolate);
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/Source/web/WebBlob.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698