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 #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 14 matching lines...) Expand all Loading... | |
25 }; | 25 }; |
26 | 26 |
27 class MockAsyncPixelTransferDelegate : public gfx::AsyncPixelTransferDelegate { | 27 class MockAsyncPixelTransferDelegate : public gfx::AsyncPixelTransferDelegate { |
28 public: | 28 public: |
29 MockAsyncPixelTransferDelegate(); | 29 MockAsyncPixelTransferDelegate(); |
30 virtual ~MockAsyncPixelTransferDelegate(); | 30 virtual ~MockAsyncPixelTransferDelegate(); |
31 | 31 |
32 // Implement AsyncPixelTransferDelegate. | 32 // Implement AsyncPixelTransferDelegate. |
33 MOCK_METHOD1(CreateRawPixelTransferState, | 33 MOCK_METHOD1(CreateRawPixelTransferState, |
34 gfx::AsyncPixelTransferState*(GLuint service_id)); | 34 gfx::AsyncPixelTransferState*(GLuint service_id)); |
35 MOCK_METHOD1(AsyncNotifyCompletion, | 35 MOCK_METHOD2(AsyncNotifyCompletion, |
36 void(const base::Closure& task)); | 36 void(const AsyncMemoryParams& mem_params, |
37 uint32 submit_count)); | |
epenner
2013/02/07 20:22:56
It was a bit unclear to me before what submit_coun
reveman
2013/02/07 21:30:52
this is what the query system uses for the value t
| |
37 MOCK_METHOD3(AsyncTexImage2D, | 38 MOCK_METHOD3(AsyncTexImage2D, |
38 void(gfx::AsyncPixelTransferState*, | 39 void(gfx::AsyncPixelTransferState*, |
39 const AsyncTexImage2DParams& tex_params, | 40 const AsyncTexImage2DParams& tex_params, |
40 const AsyncMemoryParams& mem_params)); | 41 const AsyncMemoryParams& mem_params)); |
41 MOCK_METHOD3(AsyncTexSubImage2D, | 42 MOCK_METHOD3(AsyncTexSubImage2D, |
42 void(gfx::AsyncPixelTransferState*, | 43 void(gfx::AsyncPixelTransferState*, |
43 const AsyncTexSubImage2DParams& tex_params, | 44 const AsyncTexSubImage2DParams& tex_params, |
44 const AsyncMemoryParams& mem_params)); | 45 const AsyncMemoryParams& mem_params)); |
45 MOCK_METHOD0(GetTextureUploadCount, uint32()); | 46 MOCK_METHOD0(GetTextureUploadCount, uint32()); |
46 MOCK_METHOD0(GetTotalTextureUploadTime, base::TimeDelta()); | 47 MOCK_METHOD0(GetTotalTextureUploadTime, base::TimeDelta()); |
47 | 48 |
48 private: | 49 private: |
49 DISALLOW_COPY_AND_ASSIGN(MockAsyncPixelTransferDelegate); | 50 DISALLOW_COPY_AND_ASSIGN(MockAsyncPixelTransferDelegate); |
50 }; | 51 }; |
51 | 52 |
52 } // namespace gfx | 53 } // namespace gfx |
53 | 54 |
54 #endif // UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_ | 55 #endif // UI_GL_ASYNC_TASK_DELEGATE_MOCK_H_ |
55 | 56 |
OLD | NEW |