Chromium Code Reviews| Index: remoting/codec/video_encoder.h |
| diff --git a/remoting/codec/video_encoder.h b/remoting/codec/video_encoder.h |
| index 5cc4c1078ecc6d99f77c13a7bc72ace8452aff27..e0c88dad4b55041495de830e8371762254ae21b5 100644 |
| --- a/remoting/codec/video_encoder.h |
| +++ b/remoting/codec/video_encoder.h |
| @@ -10,12 +10,12 @@ |
| #include "media/base/data_buffer.h" |
| namespace media { |
| - class DataBuffer; |
| +class DataBuffer; |
|
Wez
2013/01/25 00:51:21
nit: I don't think we need this here?
Sergey Ulanov
2013/01/25 02:33:45
Done.
|
| +class ScreenCaptureData; |
| } |
| namespace remoting { |
| -class CaptureData; |
| class VideoPacket; |
| // A class to perform the task of encoding a continous stream of |
| @@ -37,7 +37,7 @@ class VideoEncoder { |
| // |
| // When encoded data is available, partial or full |data_available_callback| |
| // is called. |
| - virtual void Encode(scoped_refptr<CaptureData> capture_data, |
| + virtual void Encode(scoped_refptr<media::ScreenCaptureData> capture_data, |
| bool key_frame, |
| const DataAvailableCallback& data_available_callback) = 0; |
| }; |