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

Unified Diff: remoting/host/host_mock_objects.h

Issue 10696134: remoting/host: Rename Capturer to VideoFrameCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months 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: 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 {

Powered by Google App Engine
This is Rietveld 408576698