| Index: third_party/WebKit/Source/wtf/TypedArrayBase.h
|
| diff --git a/third_party/WebKit/Source/wtf/TypedArrayBase.h b/third_party/WebKit/Source/wtf/TypedArrayBase.h
|
| index 32c7f9af063baab8150ce4d141ed7c806f86f8f8..d1dd85416c368e900262907fff0afd2456670649 100644
|
| --- a/third_party/WebKit/Source/wtf/TypedArrayBase.h
|
| +++ b/third_party/WebKit/Source/wtf/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));
|
| }
|
|
|
|
|