Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Unified Diff: ui/gl/gl_fence_nv.h

Issue 898543002: Remove GLFence::CreateWithoutFlush (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove flush event Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gl/gl_fence_egl.cc ('k') | ui/gl/gl_fence_nv.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « ui/gl/gl_fence_egl.cc ('k') | ui/gl/gl_fence_nv.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698