Index: ui/gl/gl_fence_arb.h |
diff --git a/ui/gl/gl_fence_arb.h b/ui/gl/gl_fence_arb.h |
index ef43948758bf92c444f2fd19a09ab251e62ec508..3975efec7e1f685b03c135b27364993eb249c182 100644 |
--- a/ui/gl/gl_fence_arb.h |
+++ b/ui/gl/gl_fence_arb.h |
@@ -7,14 +7,13 @@ |
#include "base/macros.h" |
#include "ui/gl/gl_bindings.h" |
-#include "ui/gl/gl_context.h" |
#include "ui/gl/gl_fence.h" |
namespace gfx { |
class GL_EXPORT GLFenceARB : public GLFence { |
public: |
- GLFenceARB(bool flush); |
+ GLFenceARB(); |
~GLFenceARB() override; |
// GLFence implementation: |
@@ -24,7 +23,6 @@ class GL_EXPORT GLFenceARB : public GLFence { |
private: |
GLsync sync_; |
- scoped_refptr<GLContext::FlushEvent> flush_event_; |
DISALLOW_COPY_AND_ASSIGN(GLFenceARB); |
}; |