Index: remoting/client/jni/chromoting_jni_instance.h |
diff --git a/remoting/client/jni/chromoting_jni_instance.h b/remoting/client/jni/chromoting_jni_instance.h |
index ebb419f5b3ea3ae22e6c3e3c63d30c68886b39e7..beeaa918c874cc8132fea6530dac86b316f9f859 100644 |
--- a/remoting/client/jni/chromoting_jni_instance.h |
+++ b/remoting/client/jni/chromoting_jni_instance.h |
@@ -28,12 +28,12 @@ class ClipboardEvent; |
class CursorShapeInfo; |
class PerformanceTracker; |
class FrameConsumer; |
+class VideoRenderer; |
} // namespace protocol |
class AudioPlayerAndroid; |
class ChromotingJniRuntime; |
class JniClient; |
-class JniVideoRenderer; |
class DisplayHandler; |
class JniPairingSecretFetcher; |
@@ -52,7 +52,7 @@ class ChromotingJniInstance |
base::WeakPtr<JniClient> jni_client, |
base::WeakPtr<JniPairingSecretFetcher> secret_fetcher, |
std::unique_ptr<protocol::CursorShapeStub> cursor_stub, |
- std::unique_ptr<JniVideoRenderer> video_renderer, |
+ std::unique_ptr<protocol::VideoRenderer> video_renderer, |
const std::string& username, |
const std::string& auth_token, |
const std::string& host_jid, |
@@ -169,7 +169,7 @@ class ChromotingJniInstance |
std::unique_ptr<ClientContext> client_context_; |
std::unique_ptr<protocol::PerformanceTracker> perf_tracker_; |
std::unique_ptr<protocol::CursorShapeStub> cursor_shape_stub_; |
- std::unique_ptr<JniVideoRenderer> video_renderer_; |
+ std::unique_ptr<protocol::VideoRenderer> video_renderer_; |
std::unique_ptr<ChromotingClient> client_; |
XmppSignalStrategy::XmppServerConfig xmpp_config_; |
std::unique_ptr<XmppSignalStrategy> signaling_; // Must outlive client_ |