| Index: third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| diff --git a/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h b/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| index 441ab07272172ba69c15b10a086d67d811b0f978..2dffab2b431f3ff5d6e88a29acd3c240c00d4dbf 100644
|
| --- a/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| +++ b/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| @@ -93,7 +93,7 @@ protected:
|
| static PassRefPtr<Subclass> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
|
| {
|
| RefPtr<ArrayBuffer> buf(buffer);
|
| - CHECK(verifySubRange<T>(buf, byteOffset, length));
|
| + RELEASE_ASSERT(verifySubRange<T>(buf, byteOffset, length));
|
| return adoptRef(new Subclass(buf.release(), byteOffset, length));
|
| }
|
|
|
|
|