Index: remoting/codec/video_encoder.h |
diff --git a/remoting/codec/video_encoder.h b/remoting/codec/video_encoder.h |
index 83fb308f6dc1844d382c5f28d3cf6dfee0f78dba..b9bee8bc9642378e313a300696051711442e0573 100644 |
--- a/remoting/codec/video_encoder.h |
+++ b/remoting/codec/video_encoder.h |
@@ -21,7 +21,7 @@ class VideoPacket; |
// A class to perform the task of encoding a continous stream of |
// images. |
// This class operates asynchronously to enable maximum throughput. |
-class Encoder { |
+class VideoEncoder { |
public: |
// DataAvailableCallback is called as blocks of data are made available |
@@ -29,7 +29,7 @@ class Encoder { |
// of HostMessage to reduce the amount of memory copies. |
typedef base::Callback<void(scoped_ptr<VideoPacket>)> DataAvailableCallback; |
- virtual ~Encoder() {} |
+ virtual ~VideoEncoder() {} |
// Encode an image stored in |capture_data|. |
// |