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

Unified Diff: remoting/client/jni/display_updater_factory.h

Issue 2101833002: [Remoting Android] DisplayUpdaterFactory cleanups (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's Feedback Created 4 years, 6 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/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() {}

Powered by Google App Engine
This is Rietveld 408576698