| Index: third_party/WebKit/Source/wtf/typed_arrays/ArrayPiece.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/typed_arrays/ArrayPiece.cpp b/third_party/WebKit/Source/wtf/typed_arrays/ArrayPiece.cpp
|
| index 1666fdcc2c787732ff7207c28796a79ee6a13539..27a3bc92891a7a6bed08fd00ef04dc1c8b06825a 100644
|
| --- a/third_party/WebKit/Source/wtf/typed_arrays/ArrayPiece.cpp
|
| +++ b/third_party/WebKit/Source/wtf/typed_arrays/ArrayPiece.cpp
|
| @@ -39,7 +39,7 @@ bool ArrayPiece::isNull() const {
|
| }
|
|
|
| void* ArrayPiece::data() const {
|
| - ASSERT(!isNull());
|
| + DCHECK(!isNull());
|
| return m_data;
|
| }
|
|
|
| @@ -48,7 +48,7 @@ unsigned char* ArrayPiece::bytes() const {
|
| }
|
|
|
| unsigned ArrayPiece::byteLength() const {
|
| - ASSERT(!isNull());
|
| + DCHECK(!isNull());
|
| return m_byteLength;
|
| }
|
|
|
|
|