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

Unified Diff: remoting/host/chromoting_host.h

Issue 372943002: Add video frame recording capability to Chromoting hosts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Working implementation. Created 6 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 | « no previous file | remoting/host/chromoting_host.cc » ('j') | remoting/host/chromoting_host.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host.h
diff --git a/remoting/host/chromoting_host.h b/remoting/host/chromoting_host.h
index fe2c26fa60036caa53d33cf83119e3bd868671ee..b4a8a829676ae0e514ed9333d2c0ee2fb5d737cc 100644
--- a/remoting/host/chromoting_host.h
+++ b/remoting/host/chromoting_host.h
@@ -118,6 +118,9 @@ class ChromotingHost : public base::NonThreadSafe,
// maximum duration.
void SetMaximumSessionDuration(const base::TimeDelta& max_session_duration);
+ // Enables recording of video frame sequences. by clients.
Sergey Ulanov 2014/07/11 18:38:03 remove . after 'sequences'
+ void SetEnableVideoFrameRecording(bool enable);
Sergey Ulanov 2014/07/11 18:38:03 Do we really need this flag? VideoFrameRecorder do
+
////////////////////////////////////////////////////////////////////////////
// ClientSession::EventHandler implementation.
virtual void OnSessionAuthenticating(ClientSession* client) OVERRIDE;
@@ -213,6 +216,9 @@ class ChromotingHost : public base::NonThreadSafe,
// The maximum duration of any session.
base::TimeDelta max_session_duration_;
+ // True if video frame recording is enabled.
+ bool enable_video_frame_recording_;
+
// The pairing registry for PIN-less authentication.
scoped_refptr<protocol::PairingRegistry> pairing_registry_;
« no previous file with comments | « no previous file | remoting/host/chromoting_host.cc » ('j') | remoting/host/chromoting_host.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698