| Index: ui/gl/gl_fence_nv.h
|
| diff --git a/ui/gl/gl_fence_nv.h b/ui/gl/gl_fence_nv.h
|
| index 0bac11c7f878e2b02dcd17073feb266b5b707db9..b1dc88fb967bf0a668092c77d7b7cb128e7fce27 100644
|
| --- a/ui/gl/gl_fence_nv.h
|
| +++ b/ui/gl/gl_fence_nv.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 GLFenceNV : public GLFence {
|
| public:
|
| - GLFenceNV(bool flush);
|
| + GLFenceNV();
|
| ~GLFenceNV() override;
|
|
|
| // GLFence implementation:
|
| @@ -24,7 +23,6 @@ class GL_EXPORT GLFenceNV : public GLFence {
|
|
|
| private:
|
| GLuint fence_;
|
| - scoped_refptr<GLContext::FlushEvent> flush_event_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(GLFenceNV);
|
| };
|
|
|