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

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_decoder_mock.h

Issue 8586048: base::Bind() conversion for remaining GPU files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <vector> 10 #include <vector>
(...skipping 29 matching lines...) Expand all
40 MOCK_METHOD0(Destroy, void()); 40 MOCK_METHOD0(Destroy, void());
41 MOCK_METHOD2(SetParent, bool(GLES2Decoder* parent, uint32 parent_texture_id)); 41 MOCK_METHOD2(SetParent, bool(GLES2Decoder* parent, uint32 parent_texture_id));
42 MOCK_METHOD1(ResizeOffscreenFrameBuffer, bool(const gfx::Size& size)); 42 MOCK_METHOD1(ResizeOffscreenFrameBuffer, bool(const gfx::Size& size));
43 MOCK_METHOD0(MakeCurrent, bool()); 43 MOCK_METHOD0(MakeCurrent, bool());
44 MOCK_METHOD0(ReleaseCurrent, void()); 44 MOCK_METHOD0(ReleaseCurrent, void());
45 MOCK_METHOD1(GetServiceIdForTesting, uint32(uint32 client_id)); 45 MOCK_METHOD1(GetServiceIdForTesting, uint32(uint32 client_id));
46 MOCK_METHOD0(GetGLES2Util, GLES2Util*()); 46 MOCK_METHOD0(GetGLES2Util, GLES2Util*());
47 MOCK_METHOD0(GetGLSurface, gfx::GLSurface*()); 47 MOCK_METHOD0(GetGLSurface, gfx::GLSurface*());
48 MOCK_METHOD0(GetGLContext, gfx::GLContext*()); 48 MOCK_METHOD0(GetGLContext, gfx::GLContext*());
49 MOCK_METHOD0(GetContextGroup, ContextGroup*()); 49 MOCK_METHOD0(GetContextGroup, ContextGroup*());
50 MOCK_METHOD1(SetResizeCallback, void(Callback1<gfx::Size>::Type*)); 50 MOCK_METHOD1(SetResizeCallback, void(const base::Callback<void(gfx::Size)>&));
51 MOCK_METHOD1(SetSwapBuffersCallback, void(Callback0::Type*)); 51 MOCK_METHOD1(SetSwapBuffersCallback, void(const base::Closure&));
52 MOCK_METHOD1(SetStreamTextureManager, void(StreamTextureManager*)); 52 MOCK_METHOD1(SetStreamTextureManager, void(StreamTextureManager*));
53 MOCK_METHOD3(DoCommand, error::Error(unsigned int command, 53 MOCK_METHOD3(DoCommand, error::Error(unsigned int command,
54 unsigned int arg_count, 54 unsigned int arg_count,
55 const void* cmd_data)); 55 const void* cmd_data));
56 MOCK_METHOD2(GetServiceTextureId, bool(uint32 client_texture_id, 56 MOCK_METHOD2(GetServiceTextureId, bool(uint32 client_texture_id,
57 uint32* service_texture_id)); 57 uint32* service_texture_id));
58 MOCK_METHOD0(GetContextLostReason, error::ContextLostReason()); 58 MOCK_METHOD0(GetContextLostReason, error::ContextLostReason());
59 MOCK_CONST_METHOD1(GetCommandName, const char*(unsigned int command_id)); 59 MOCK_CONST_METHOD1(GetCommandName, const char*(unsigned int command_id));
60 MOCK_METHOD8(ClearLevel, bool( 60 MOCK_METHOD8(ClearLevel, bool(
61 unsigned service_id, 61 unsigned service_id,
62 unsigned bind_target, 62 unsigned bind_target,
63 unsigned target, 63 unsigned target,
64 int level, 64 int level,
65 unsigned format, 65 unsigned format,
66 unsigned type, 66 unsigned type,
67 int width, 67 int width,
68 int height)); 68 int height));
69 69
70 DISALLOW_COPY_AND_ASSIGN(MockGLES2Decoder); 70 DISALLOW_COPY_AND_ASSIGN(MockGLES2Decoder);
71 }; 71 };
72 72
73 } // namespace gles2 73 } // namespace gles2
74 } // namespace gpu 74 } // namespace gpu
75 75
76 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_ 76 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_MOCK_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/gpu_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698