Index: ui/gl/gl_fence_arb.h |
diff --git a/ui/gl/gl_fence_arb.h b/ui/gl/gl_fence_arb.h |
index 1c1610473149322a3bea842acde9724a5621d481..6e34a8ca08ce12351e173b14d7d265f1c2f6e77e 100644 |
--- a/ui/gl/gl_fence_arb.h |
+++ b/ui/gl/gl_fence_arb.h |
@@ -21,9 +21,10 @@ class GL_EXPORT GLFenceARB : public GLFence { |
bool HasCompleted() override; |
void ClientWait() override; |
void ServerWait() override; |
+ void Invalidate() override; |
private: |
- GLsync sync_; |
+ GLsync sync_ = 0; |
DISALLOW_COPY_AND_ASSIGN(GLFenceARB); |
}; |