OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file contains the mock GLES2Decoder class. | 5 // This file contains the mock GLES2Decoder class. |
6 | 6 |
7 #ifndef GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_ | 7 #ifndef GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_ |
8 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_ | 8 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_ |
9 | 9 |
10 #include <stdint.h> | 10 #include <stdint.h> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 bool offscreen, | 51 bool offscreen, |
52 const DisallowedFeatures& disallowed_features, | 52 const DisallowedFeatures& disallowed_features, |
53 const ContextCreationAttribHelper& attrib_helper)); | 53 const ContextCreationAttribHelper& attrib_helper)); |
54 MOCK_METHOD1(Destroy, void(bool have_context)); | 54 MOCK_METHOD1(Destroy, void(bool have_context)); |
55 MOCK_METHOD1(SetSurface, void(const scoped_refptr<gl::GLSurface>& surface)); | 55 MOCK_METHOD1(SetSurface, void(const scoped_refptr<gl::GLSurface>& surface)); |
56 MOCK_METHOD0(ReleaseSurface, void()); | 56 MOCK_METHOD0(ReleaseSurface, void()); |
57 MOCK_METHOD1(TakeFrontBuffer, void(const Mailbox& mailbox)); | 57 MOCK_METHOD1(TakeFrontBuffer, void(const Mailbox& mailbox)); |
58 MOCK_METHOD2(ReturnFrontBuffer, void(const Mailbox& mailbox, bool is_lost)); | 58 MOCK_METHOD2(ReturnFrontBuffer, void(const Mailbox& mailbox, bool is_lost)); |
59 MOCK_METHOD0(GetSavedBackTextureCountForTest, size_t()); | 59 MOCK_METHOD0(GetSavedBackTextureCountForTest, size_t()); |
60 MOCK_METHOD0(GetCreatedBackTextureCountForTest, size_t()); | 60 MOCK_METHOD0(GetCreatedBackTextureCountForTest, size_t()); |
61 MOCK_METHOD1(ResizeOffscreenFrameBuffer, bool(const gfx::Size& size)); | 61 MOCK_METHOD1(ResizeOffscreenFramebuffer, bool(const gfx::Size& size)); |
62 MOCK_METHOD0(MakeCurrent, bool()); | 62 MOCK_METHOD0(MakeCurrent, bool()); |
63 MOCK_METHOD1(GetServiceIdForTesting, uint32_t(uint32_t client_id)); | 63 MOCK_METHOD1(GetServiceIdForTesting, uint32_t(uint32_t client_id)); |
64 MOCK_METHOD0(GetGLES2Util, GLES2Util*()); | 64 MOCK_METHOD0(GetGLES2Util, GLES2Util*()); |
65 MOCK_METHOD0(GetGLSurface, gl::GLSurface*()); | 65 MOCK_METHOD0(GetGLSurface, gl::GLSurface*()); |
66 MOCK_METHOD0(GetGLContext, gl::GLContext*()); | 66 MOCK_METHOD0(GetGLContext, gl::GLContext*()); |
67 MOCK_METHOD0(GetContextGroup, ContextGroup*()); | 67 MOCK_METHOD0(GetContextGroup, ContextGroup*()); |
68 MOCK_CONST_METHOD0(GetFeatureInfo, const FeatureInfo*()); | 68 MOCK_CONST_METHOD0(GetFeatureInfo, const FeatureInfo*()); |
69 MOCK_METHOD0(GetContextState, const ContextState*()); | 69 MOCK_METHOD0(GetContextState, const ContextState*()); |
70 MOCK_METHOD1(GetTranslator, | 70 MOCK_METHOD1(GetTranslator, |
71 scoped_refptr<ShaderTranslatorInterface>(unsigned int type)); | 71 scoped_refptr<ShaderTranslatorInterface>(unsigned int type)); |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 MOCK_CONST_METHOD0(WasContextLostByRobustnessExtension, bool()); | 165 MOCK_CONST_METHOD0(WasContextLostByRobustnessExtension, bool()); |
166 MOCK_METHOD1(MarkContextLost, void(gpu::error::ContextLostReason reason)); | 166 MOCK_METHOD1(MarkContextLost, void(gpu::error::ContextLostReason reason)); |
167 | 167 |
168 DISALLOW_COPY_AND_ASSIGN(MockGLES2Decoder); | 168 DISALLOW_COPY_AND_ASSIGN(MockGLES2Decoder); |
169 }; | 169 }; |
170 | 170 |
171 } // namespace gles2 | 171 } // namespace gles2 |
172 } // namespace gpu | 172 } // namespace gpu |
173 | 173 |
174 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_ | 174 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_ |
OLD | NEW |