Index: remoting/client/jni/display_updater_factory.h |
diff --git a/remoting/client/jni/display_updater_factory.h b/remoting/client/jni/display_updater_factory.h |
index 0f1363b6a7e73d5ac52ab7ba271e2494a386a40a..9826e96117137831fd4f7e5d1928deef7508fcdc 100644 |
--- a/remoting/client/jni/display_updater_factory.h |
+++ b/remoting/client/jni/display_updater_factory.h |
@@ -12,13 +12,10 @@ |
namespace remoting { |
namespace protocol { |
- |
class CursorShapeStub; |
- |
+class VideoRenderer; |
} // namespace protocol |
-class JniVideoRenderer; |
- |
// Interface for creating objects to update image (desktop frame or cursor |
// shape) to display. Factory functions can be called on any thread but the |
// returned object should be used on the network thread. |
@@ -28,7 +25,7 @@ class DisplayUpdaterFactory { |
virtual std::unique_ptr<protocol::CursorShapeStub> |
CreateCursorShapeStub() = 0; |
- virtual std::unique_ptr<JniVideoRenderer> CreateVideoRenderer() = 0; |
+ virtual std::unique_ptr<protocol::VideoRenderer> CreateVideoRenderer() = 0; |
protected: |
DisplayUpdaterFactory() {} |