| Index: ui/gl/gl_implementation_android.cc
|
| diff --git a/ui/gl/gl_implementation_android.cc b/ui/gl/gl_implementation_android.cc
|
| index 0b01133294345166bd37897253cf38ec6eefb43e..0295e885f6a4658ff0a537f4f6843ea405c314b9 100644
|
| --- a/ui/gl/gl_implementation_android.cc
|
| +++ b/ui/gl/gl_implementation_android.cc
|
| @@ -52,8 +52,7 @@ bool InitializeStaticGLBindings(GLImplementation implementation) {
|
| // Prevent reinitialization with a different implementation. Once the gpu
|
| // unit tests have initialized with kGLImplementationMock, we don't want to
|
| // later switch to another GL implementation.
|
| - if (GetGLImplementation() != kGLImplementationNone)
|
| - return true;
|
| + DCHECK_EQ(kGLImplementationNone, GetGLImplementation());
|
|
|
| switch (implementation) {
|
| case kGLImplementationEGLGLES2: {
|
|
|