diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-10 01:05:31 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-10 01:05:31 +0000 |
commit | 1290af9df599257e3cc3112504ed944ed3a00ce7 (patch) | |
tree | 857975493a30d83cbb82497bc0315042a9867dc1 /remoting/protocol/session.h | |
parent | f8aa077c2ca13e8d665e0644e4de567c0380f37c (diff) | |
download | chromium_src-1290af9df599257e3cc3112504ed944ed3a00ce7.zip chromium_src-1290af9df599257e3cc3112504ed944ed3a00ce7.tar.gz chromium_src-1290af9df599257e3cc3112504ed944ed3a00ce7.tar.bz2 |
Revert 96089 - Remove video_channel() from Session interface
BUG=None
TEST=Unittests.
Review URL: http://codereview.chromium.org/7508044
TBR=sergeyu@chromium.org
Review URL: http://codereview.chromium.org/7604021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96106 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/session.h')
-rw-r--r-- | remoting/protocol/session.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/remoting/protocol/session.h b/remoting/protocol/session.h index 89cc266..fc40a6d 100644 --- a/remoting/protocol/session.h +++ b/remoting/protocol/session.h @@ -64,6 +64,9 @@ class Session : public base::NonThreadSafe { // instead. virtual net::Socket* control_channel() = 0; virtual net::Socket* event_channel() = 0; + virtual net::Socket* video_channel() = 0; + virtual net::Socket* video_rtp_channel() = 0; + virtual net::Socket* video_rtcp_channel() = 0; // JID of the other side. virtual const std::string& jid() = 0; |