| Index: third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp b/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp
|
| index 36f9ef394c37e38b5b2f251ce138d3b579b55ed4..2e5fa35990b25d2e29fc640146bb2fdbe43f6784 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp
|
| @@ -14,7 +14,8 @@ WebGLSharedPlatform3DObject::WebGLSharedPlatform3DObject(
|
|
|
| void WebGLSharedPlatform3DObject::SetObject(GLuint object) {
|
| // object==0 && deleted==false indicating an uninitialized state;
|
| - ASSERT(!object_ && !IsDeleted());
|
| + DCHECK(!object_);
|
| + DCHECK(!IsDeleted());
|
| object_ = object;
|
| }
|
|
|
|
|