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

Unified Diff: remoting/host/host_mock_objects.h

Issue 10790075: Rename Capturer to VideoFrameCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased. 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
« no previous file with comments | « remoting/host/event_executor_win.cc ('k') | remoting/host/host_mock_objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_mock_objects.h
diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h
index ae2eb1b898b913aca93f9cebbd17db4fbea976f9..8dd4f55669e0d6d6eb1f84eea024f421e9ac44d4 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/chromoting_host_context.h"
#include "remoting/host/client_session.h"
#include "remoting/host/continue_window.h"
@@ -31,10 +31,10 @@ class MockCaptureCompletedCallback {
DISALLOW_COPY_AND_ASSIGN(MockCaptureCompletedCallback);
};
-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());
@@ -49,7 +49,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 MockDisconnectWindow : public DisconnectWindow {
« no previous file with comments | « remoting/host/event_executor_win.cc ('k') | remoting/host/host_mock_objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698