Index: remoting/host/host_mock_objects.h |
diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h |
index 15bdc6db8de037e8eb5080b602f1c5261dc806ed..32df6d2b46b56f64b5a6cc021dc5dc93d5f595b7 100644 |
--- a/remoting/host/host_mock_objects.h |
+++ b/remoting/host/host_mock_objects.h |
@@ -31,7 +31,7 @@ class MockDesktopEnvironment : public DesktopEnvironment { |
MOCK_METHOD0(CreateAudioCapturerPtr, AudioCapturer*()); |
MOCK_METHOD0(CreateInputInjectorPtr, InputInjector*()); |
MOCK_METHOD0(CreateScreenControlsPtr, ScreenControls*()); |
- MOCK_METHOD0(CreateVideoCapturerPtr, media::ScreenCapturer*()); |
+ MOCK_METHOD0(CreateVideoCapturerPtr, webrtc::ScreenCapturer*()); |
MOCK_CONST_METHOD0(GetCapabilities, std::string()); |
MOCK_METHOD1(SetCapabilities, void(const std::string&)); |
@@ -39,7 +39,7 @@ class MockDesktopEnvironment : public DesktopEnvironment { |
virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE; |
virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE; |
virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE; |
- virtual scoped_ptr<media::ScreenCapturer> CreateVideoCapturer() OVERRIDE; |
+ virtual scoped_ptr<webrtc::ScreenCapturer> CreateVideoCapturer() OVERRIDE; |
}; |
class MockClientSessionControl : public ClientSessionControl { |