summaryrefslogtreecommitdiffstats
path: root/remoting/protocol/rtp_video_writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/protocol/rtp_video_writer.h')
-rw-r--r--remoting/protocol/rtp_video_writer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/remoting/protocol/rtp_video_writer.h b/remoting/protocol/rtp_video_writer.h
index 93d2a64..9d49006 100644
--- a/remoting/protocol/rtp_video_writer.h
+++ b/remoting/protocol/rtp_video_writer.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -24,7 +24,7 @@ class RtpVideoWriter : public VideoWriter {
virtual ~RtpVideoWriter();
// VideoWriter interface.
- virtual void Init(protocol::Session* session,
+ virtual void Init(Session* session,
const InitializedCallback& callback) OVERRIDE;
virtual void Close() OVERRIDE;
@@ -36,6 +36,8 @@ class RtpVideoWriter : public VideoWriter {
private:
void OnChannelReady(bool rtp, net::Socket* socket);
+ Session* session_;
+
bool initialized_;
InitializedCallback initialized_callback_;