diff options
Diffstat (limited to 'cc/resources/texture_uploader_unittest.cc')
-rw-r--r-- | cc/resources/texture_uploader_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/resources/texture_uploader_unittest.cc b/cc/resources/texture_uploader_unittest.cc index bf94065..335908d 100644 --- a/cc/resources/texture_uploader_unittest.cc +++ b/cc/resources/texture_uploader_unittest.cc @@ -19,7 +19,7 @@ class TextureUploadTestContext : public gpu::gles2::GLES2InterfaceStub { public: TextureUploadTestContext() : result_available_(0), unpack_alignment_(4) {} - virtual void PixelStorei(GLenum pname, GLint param) OVERRIDE { + virtual void PixelStorei(GLenum pname, GLint param) override { switch (pname) { case GL_UNPACK_ALIGNMENT: // Param should be a power of two <= 8. @@ -43,7 +43,7 @@ class TextureUploadTestContext : public gpu::gles2::GLES2InterfaceStub { virtual void GetQueryObjectuivEXT(GLuint, GLenum type, - GLuint* value) OVERRIDE { + GLuint* value) override { switch (type) { case GL_QUERY_RESULT_AVAILABLE_EXT: *value = result_available_; @@ -62,7 +62,7 @@ class TextureUploadTestContext : public gpu::gles2::GLES2InterfaceStub { GLsizei height, GLenum format, GLenum type, - const void* pixels) OVERRIDE { + const void* pixels) override { EXPECT_EQ(static_cast<unsigned>(GL_TEXTURE_2D), target); EXPECT_EQ(0, level); EXPECT_LE(0, width); |