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

Unified Diff: gpu/command_buffer/client/client_test_helper.h

Issue 1417853006: gpu: introduce glSetStreamTextureSizeCHROMIUM(GLuint texture, GLint stream_id, GLsizei width, GLsiz… Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android_webview.test failure Created 5 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/client_test_helper.h
diff --git a/gpu/command_buffer/client/client_test_helper.h b/gpu/command_buffer/client/client_test_helper.h
index ae464e96ae9a36e33f3f2446409c130dcc35ef41..1114cd5d20f3d4bbc981ffbdd31d25f964344e29 100644
--- a/gpu/command_buffer/client/client_test_helper.h
+++ b/gpu/command_buffer/client/client_test_helper.h
@@ -110,7 +110,8 @@ class MockClientGpuControl : public GpuControl {
MOCK_METHOD2(SignalSyncPoint, void(uint32 id, const base::Closure& callback));
MOCK_METHOD2(SignalQuery, void(uint32 query, const base::Closure& callback));
MOCK_METHOD1(SetSurfaceVisible, void(bool visible));
- MOCK_METHOD1(CreateStreamTexture, uint32(uint32));
+ MOCK_METHOD1(CreateStreamTexture, int32(uint32));
+ MOCK_METHOD4(SetStreamTextureSize, void(uint32, int32, size_t, size_t));
MOCK_METHOD1(SetLock, void(base::Lock*));
MOCK_METHOD0(IsGpuChannelLost, bool());
MOCK_CONST_METHOD0(GetNamespaceID, CommandBufferNamespace());

Powered by Google App Engine
This is Rietveld 408576698