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

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

Issue 12210129: gpu: Add the ability to wait on upload completion. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix logging. Created 7 years, 9 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 unified diff | Download patch
OLDNEW
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 #ifndef UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_ 5 #ifndef UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_
6 #define UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_ 6 #define UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "testing/gmock/include/gmock/gmock.h" 9 #include "testing/gmock/include/gmock/gmock.h"
10 #include "ui/gl/async_pixel_transfer_delegate.h" 10 #include "ui/gl/async_pixel_transfer_delegate.h"
(...skipping 25 matching lines...) Expand all
36 void(const AsyncMemoryParams& mem_params, 36 void(const AsyncMemoryParams& mem_params,
37 const CompletionCallback& callback)); 37 const CompletionCallback& callback));
38 MOCK_METHOD3(AsyncTexImage2D, 38 MOCK_METHOD3(AsyncTexImage2D,
39 void(gfx::AsyncPixelTransferState*, 39 void(gfx::AsyncPixelTransferState*,
40 const AsyncTexImage2DParams& tex_params, 40 const AsyncTexImage2DParams& tex_params,
41 const AsyncMemoryParams& mem_params)); 41 const AsyncMemoryParams& mem_params));
42 MOCK_METHOD3(AsyncTexSubImage2D, 42 MOCK_METHOD3(AsyncTexSubImage2D,
43 void(gfx::AsyncPixelTransferState*, 43 void(gfx::AsyncPixelTransferState*,
44 const AsyncTexSubImage2DParams& tex_params, 44 const AsyncTexSubImage2DParams& tex_params,
45 const AsyncMemoryParams& mem_params)); 45 const AsyncMemoryParams& mem_params));
46 MOCK_METHOD1(WaitForTransferCompletion, void(gfx::AsyncPixelTransferState*));
46 MOCK_METHOD0(GetTextureUploadCount, uint32()); 47 MOCK_METHOD0(GetTextureUploadCount, uint32());
47 MOCK_METHOD0(GetTotalTextureUploadTime, base::TimeDelta()); 48 MOCK_METHOD0(GetTotalTextureUploadTime, base::TimeDelta());
48 49
49 private: 50 private:
50 DISALLOW_COPY_AND_ASSIGN(MockAsyncPixelTransferDelegate); 51 DISALLOW_COPY_AND_ASSIGN(MockAsyncPixelTransferDelegate);
51 }; 52 };
52 53
53 } // namespace gfx 54 } // namespace gfx
54 55
55 #endif // UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_ 56 #endif // UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_
56 57
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_ids_autogen.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698