Index: third_party/WebKit/Source/platform/wtf/typed_arrays/TypedArrayBase.h |
diff --git a/third_party/WebKit/Source/platform/wtf/typed_arrays/TypedArrayBase.h b/third_party/WebKit/Source/platform/wtf/typed_arrays/TypedArrayBase.h |
index 415529dba40b636bed52a2069fbf2b202f62f152..34465c57716a70ac683c3e3bf543a3b2830a2090 100644 |
--- a/third_party/WebKit/Source/platform/wtf/typed_arrays/TypedArrayBase.h |
+++ b/third_party/WebKit/Source/platform/wtf/typed_arrays/TypedArrayBase.h |
@@ -88,7 +88,7 @@ class TypedArrayBase : public ArrayBufferView { |
unsigned byte_offset, |
unsigned length) { |
RefPtr<ArrayBuffer> buf(std::move(buffer)); |
- RELEASE_ASSERT(VerifySubRange<T>(buf, byte_offset, length)); |
+ CHECK(VerifySubRange<T>(buf, byte_offset, length)); |
return AdoptRef(new Subclass(buf.Release(), byte_offset, length)); |
} |