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

Unified Diff: remoting/host/client_session.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/chromoting_host_unittest.cc ('k') | remoting/host/client_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_session.h
diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h
index 397beffb81b35e496af2e6fe52494328218d9bbf..6a592033031db5a9812d970e4dfdc4789000e0df 100644
--- a/remoting/host/client_session.h
+++ b/remoting/host/client_session.h
@@ -24,7 +24,7 @@
namespace remoting {
-class Capturer;
+class VideoFrameCapturer;
// A ClientSession keeps a reference to a connection to a client, and maintains
// per-client state.
@@ -69,7 +69,7 @@ class ClientSession : public protocol::HostEventStub,
ClientSession(EventHandler* event_handler,
scoped_ptr<protocol::ConnectionToClient> connection,
protocol::HostEventStub* host_event_stub,
- Capturer* capturer,
+ VideoFrameCapturer* capturer,
const base::TimeDelta& max_duration);
virtual ~ClientSession();
@@ -164,11 +164,11 @@ class ClientSession : public protocol::HostEventStub,
// it.
base::WeakPtrFactory<ClipboardStub> client_clipboard_factory_;
- // Capturer, used to determine current screen size for ensuring injected
- // mouse events fall within the screen area.
+ // VideoFrameCapturer, used to determine current screen size for ensuring
+ // injected mouse events fall within the screen area.
// TODO(lambroslambrou): Move floor-control logic, and clamping to screen
// area, out of this class (crbug.com/96508).
- Capturer* capturer_;
+ VideoFrameCapturer* capturer_;
// The maximum duration of this session.
// There is no maximum if this value is <= 0.
« no previous file with comments | « remoting/host/chromoting_host_unittest.cc ('k') | remoting/host/client_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698