| Index: third_party/WebKit/Source/modules/webgl/WebGLUniformLocation.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLUniformLocation.cpp b/third_party/WebKit/Source/modules/webgl/WebGLUniformLocation.cpp
|
| index 2aeb45ade3e13f9fc2b239343ee303a4452cbc50..302157bd993cc5a19df4ec880bf2d10fc2f39e5a 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLUniformLocation.cpp
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLUniformLocation.cpp
|
| @@ -51,7 +51,7 @@ WebGLProgram* WebGLUniformLocation::Program() const {
|
| GLint WebGLUniformLocation::Location() const {
|
| // If the program has been linked again, then this UniformLocation is no
|
| // longer valid.
|
| - ASSERT(program_->LinkCount() == link_count_);
|
| + DCHECK_EQ(program_->LinkCount(), link_count_);
|
| return location_;
|
| }
|
|
|
|
|