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

Unified Diff: remoting/ios/display/gl_display_handler.h

Issue 2879743002: [CRD iOS] Hook the touch input feedback (Closed)
Patch Set: Just use ViewMatrix::Point. No more out-pointers... Created 3 years, 7 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/ios/display/gl_display_handler.h
diff --git a/remoting/ios/display/gl_display_handler.h b/remoting/ios/display/gl_display_handler.h
index a23cee7d8796da340c7f26eaddee7e15f5f18748..ec682587c12aac64733b501cc2b343d97a544d16 100644
--- a/remoting/ios/display/gl_display_handler.h
+++ b/remoting/ios/display/gl_display_handler.h
@@ -11,11 +11,11 @@
#import "remoting/client/display/sys_opengl.h"
#include "base/memory/ptr_util.h"
-#include "remoting/client/view_matrix.h"
namespace remoting {
class ChromotingClientRuntime;
+class RendererFacade;
namespace protocol {
@@ -48,8 +48,7 @@ class CursorShapeStub;
// Called every time the GLKView dimension is initialized or changed.
- (void)onSurfaceChanged:(const CGRect&)frame;
-- (void)onPixelTransformationChanged:(const remoting::ViewMatrix&)matrix;
-
+- (std::unique_ptr<remoting::RendererFacade>)CreateRendererFacade;
nicholss 2017/05/15 15:49:40 Facade is the wrong word also. Facade means to h
- (std::unique_ptr<remoting::protocol::VideoRenderer>)CreateVideoRenderer;
- (std::unique_ptr<remoting::protocol::CursorShapeStub>)CreateCursorShapeStub;

Powered by Google App Engine
This is Rietveld 408576698