diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-08 23:34:23 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-08 23:34:23 +0000 |
commit | c3ddba29664d91b8910489150171496b28355bbb (patch) | |
tree | 7b0273861652a98310037d074041d40dfbd6fbca /remoting/protocol/video_reader.h | |
parent | 5000ade63130b45452cb1d0d67d1f92e77c3436f (diff) | |
download | chromium_src-c3ddba29664d91b8910489150171496b28355bbb.zip chromium_src-c3ddba29664d91b8910489150171496b28355bbb.tar.gz chromium_src-c3ddba29664d91b8910489150171496b28355bbb.tar.bz2 |
Chromoting: Rename ChromotocolConfig -> SessionConfig
BUG=none
TEST=build chrome, chromoting
Review URL: http://codereview.chromium.org/4446005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65451 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/video_reader.h')
-rw-r--r-- | remoting/protocol/video_reader.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/remoting/protocol/video_reader.h b/remoting/protocol/video_reader.h index 9ead3c9f..ab94913 100644 --- a/remoting/protocol/video_reader.h +++ b/remoting/protocol/video_reader.h @@ -14,24 +14,22 @@ namespace remoting { -namespace protocol { -class Session; -} // namespace protocol - -class ChromotocolConfig; class ChromotocolConnection; namespace protocol { +class Session; +class SessionConfig; + class VideoReader { public: - static VideoReader* Create(const ChromotocolConfig* config); + static VideoReader* Create(const SessionConfig* config); virtual ~VideoReader(); // Initializies the reader. Doesn't take ownership of either |connection| // or |video_stub|. - virtual void Init(protocol::Session* session, + virtual void Init(Session* session, VideoStub* video_stub) = 0; // Closes the reader. The stub should not be called after Close(). |