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

Unified Diff: cc/test/test_web_graphics_context_3d.h

Issue 2687143003: Fix flaky LayerTreeHostCopyRequestTestDeleteTexture test. (Closed)
Patch Set: flaky-copyrequest: . Created 3 years, 10 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 | « cc/test/test_gles2_interface.cc ('k') | cc/test/test_web_graphics_context_3d.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/test_web_graphics_context_3d.h
diff --git a/cc/test/test_web_graphics_context_3d.h b/cc/test/test_web_graphics_context_3d.h
index bf6cd1b5007585cb959cd332e968b234f967628a..e7790d8c91aae89d138c36e5b5d078b9dac357a0 100644
--- a/cc/test/test_web_graphics_context_3d.h
+++ b/cc/test/test_web_graphics_context_3d.h
@@ -130,10 +130,10 @@ class TestWebGraphicsContext3D {
virtual void genRenderbuffers(GLsizei count, GLuint* ids);
virtual void genTextures(GLsizei count, GLuint* ids);
- virtual void deleteBuffers(GLsizei count, GLuint* ids);
- virtual void deleteFramebuffers(GLsizei count, GLuint* ids);
- virtual void deleteRenderbuffers(GLsizei count, GLuint* ids);
- virtual void deleteTextures(GLsizei count, GLuint* ids);
+ virtual void deleteBuffers(GLsizei count, const GLuint* ids);
+ virtual void deleteFramebuffers(GLsizei count, const GLuint* ids);
+ virtual void deleteRenderbuffers(GLsizei count, const GLuint* ids);
+ virtual void deleteTextures(GLsizei count, const GLuint* ids);
virtual GLuint createBuffer();
virtual GLuint createFramebuffer();
« no previous file with comments | « cc/test/test_gles2_interface.cc ('k') | cc/test/test_web_graphics_context_3d.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698