summaryrefslogtreecommitdiffstats
path: root/ui/gl/gl_fence_nv.h
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-09 03:54:27 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-09 10:55:07 +0000
commit3b3d52b1844d5174f63a1db8cf3f0e3254ec43f6 (patch)
tree720b6c8d126123e087abffedaedd8a9fa4907132 /ui/gl/gl_fence_nv.h
parent002d02909368b7067cc3df9149c5e46ce445861c (diff)
downloadchromium_src-3b3d52b1844d5174f63a1db8cf3f0e3254ec43f6.zip
chromium_src-3b3d52b1844d5174f63a1db8cf3f0e3254ec43f6.tar.gz
chromium_src-3b3d52b1844d5174f63a1db8cf3f0e3254ec43f6.tar.bz2
replace OVERRIDE and FINAL with override and final in ui/
BUG=417463 Review URL: https://codereview.chromium.org/623293004 Cr-Commit-Position: refs/heads/master@{#298839}
Diffstat (limited to 'ui/gl/gl_fence_nv.h')
-rw-r--r--ui/gl/gl_fence_nv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/gl/gl_fence_nv.h b/ui/gl/gl_fence_nv.h
index fee9eff..c89cc42 100644
--- a/ui/gl/gl_fence_nv.h
+++ b/ui/gl/gl_fence_nv.h
@@ -18,9 +18,9 @@ class GL_EXPORT GLFenceNV : public GLFence {
virtual ~GLFenceNV();
// GLFence implementation:
- virtual bool HasCompleted() OVERRIDE;
- virtual void ClientWait() OVERRIDE;
- virtual void ServerWait() OVERRIDE;
+ virtual bool HasCompleted() override;
+ virtual void ClientWait() override;
+ virtual void ServerWait() override;
private:
GLuint fence_;