| Index: ui/gl/gl_fence_egl.cc
|
| diff --git a/ui/gl/gl_fence_egl.cc b/ui/gl/gl_fence_egl.cc
|
| index 74f0a0171b6907a7b2943328af25e2360826070f..641b8c2e3fc6772cd467975b5031ee7bc5c6a042 100644
|
| --- a/ui/gl/gl_fence_egl.cc
|
| +++ b/ui/gl/gl_fence_egl.cc
|
| @@ -45,7 +45,7 @@ void GLFenceEGL::ClientWait() {
|
| EGLTimeKHR time = EGL_FOREVER_KHR;
|
| EGLint result = eglClientWaitSyncKHR(display_, sync_, flags, time);
|
| DCHECK_IMPLIES(!g_ignore_egl_sync_failures,
|
| - EGL_TIMEOUT_EXPIRED_KHR == result);
|
| + EGL_TIMEOUT_EXPIRED_KHR != result);
|
| if (result == EGL_FALSE) {
|
| LOG(ERROR) << "Failed to wait for EGLSync. error:"
|
| << ui::GetLastEGLErrorString();
|
|
|