diff options
Diffstat (limited to 'remoting/host/mock_objects.h')
-rw-r--r-- | remoting/host/mock_objects.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/remoting/host/mock_objects.h b/remoting/host/mock_objects.h index 0585864..f4135f2 100644 --- a/remoting/host/mock_objects.h +++ b/remoting/host/mock_objects.h @@ -61,9 +61,8 @@ class MockClientConnection : public ClientConnection { MOCK_METHOD2(SendInitClientMessage, void(int width, int height)); MOCK_METHOD0(SendBeginUpdateStreamMessage, void()); - MOCK_METHOD2(SendUpdateStreamPacketMessage, - void(const UpdateStreamPacketHeader* header, - scoped_refptr<media::DataBuffer> data)); + MOCK_METHOD1(SendUpdateStreamPacketMessage, + void(scoped_refptr<media::DataBuffer> data)); MOCK_METHOD0(SendEndUpdateStreamMessage, void()); MOCK_METHOD0(GetPendingUpdateStreamMessages, int()); |