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

Unified Diff: remoting/host/event_executor_win.cc

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_mac.cc ('k') | remoting/host/host_mock_objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/event_executor_win.cc
diff --git a/remoting/host/event_executor_win.cc b/remoting/host/event_executor_win.cc
index 86db6bf688d8f16b32380343249154d9bc1349ae..0f2ac00783fe22f2d97b6f4b6e57680c9481ff46 100644
--- a/remoting/host/event_executor_win.cc
+++ b/remoting/host/event_executor_win.cc
@@ -10,7 +10,7 @@
#include "base/compiler_specific.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
-#include "remoting/host/capturer.h"
+#include "remoting/host/video_frame_capturer.h"
#include "remoting/host/clipboard.h"
#include "remoting/proto/event.pb.h"
@@ -32,7 +32,7 @@ class EventExecutorWin : public EventExecutor {
public:
EventExecutorWin(scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
- Capturer* capturer);
+ VideoFrameCapturer* capturer);
virtual ~EventExecutorWin() {}
// ClipboardStub interface.
@@ -54,7 +54,7 @@ class EventExecutorWin : public EventExecutor {
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_;
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
- Capturer* capturer_;
+ VideoFrameCapturer* capturer_;
scoped_ptr<Clipboard> clipboard_;
DISALLOW_COPY_AND_ASSIGN(EventExecutorWin);
@@ -63,7 +63,7 @@ class EventExecutorWin : public EventExecutor {
EventExecutorWin::EventExecutorWin(
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
- Capturer* capturer)
+ VideoFrameCapturer* capturer)
: main_task_runner_(main_task_runner),
ui_task_runner_(ui_task_runner),
capturer_(capturer),
@@ -290,7 +290,7 @@ void EventExecutorWin::HandleMouse(const MouseEvent& event) {
scoped_ptr<EventExecutor> EventExecutor::Create(
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
- Capturer* capturer) {
+ VideoFrameCapturer* capturer) {
return scoped_ptr<EventExecutor>(
new EventExecutorWin(main_task_runner, ui_task_runner, capturer));
}
« no previous file with comments | « remoting/host/event_executor_mac.cc ('k') | remoting/host/host_mock_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698