| Index: remoting/host/host_mock_objects.h
|
| diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h
|
| index f061cd24b3ab5b9746e8b71a020d5bda257bfc8b..8c3fa6677d4c9b7449cc765d9bd1009094c8cff7 100644
|
| --- a/remoting/host/host_mock_objects.h
|
| +++ b/remoting/host/host_mock_objects.h
|
| @@ -6,7 +6,7 @@
|
| #define REMOTING_HOST_HOST_MOCK_OBJECTS_H_
|
|
|
| #include "net/base/ip_endpoint.h"
|
| -#include "remoting/host/capturer.h"
|
| +#include "remoting/host/video_frame_capturer.h"
|
| #include "remoting/host/curtain.h"
|
| #include "remoting/host/chromoting_host_context.h"
|
| #include "remoting/host/client_session.h"
|
| @@ -20,10 +20,10 @@
|
|
|
| namespace remoting {
|
|
|
| -class MockCapturer : public Capturer {
|
| +class MockVideoFrameCapturer : public VideoFrameCapturer {
|
| public:
|
| - MockCapturer();
|
| - virtual ~MockCapturer();
|
| + MockVideoFrameCapturer();
|
| + virtual ~MockVideoFrameCapturer();
|
|
|
| MOCK_METHOD1(Start, void(const CursorShapeChangedCallback& callback));
|
| MOCK_METHOD0(Stop, void());
|
| @@ -38,7 +38,7 @@ class MockCapturer : public Capturer {
|
| MOCK_CONST_METHOD0(size_most_recent, const SkISize&());
|
|
|
| private:
|
| - DISALLOW_COPY_AND_ASSIGN(MockCapturer);
|
| + DISALLOW_COPY_AND_ASSIGN(MockVideoFrameCapturer);
|
| };
|
|
|
| class MockCurtain : public Curtain {
|
|
|