Index: remoting/protocol/video_reader.h |
diff --git a/remoting/protocol/video_reader.h b/remoting/protocol/video_reader.h |
index 9ead3c9f11f4bf44b25cb2649b5f488379f7af58..ab94913798b2f6002caa68f5f1322f2708f18216 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(). |