Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2170)

Unified Diff: remoting/codec/video_encoder.h

Issue 12047101: Move screen capturers from remoting/capturer to media/video/capturer/screen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698