OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ | 5 #ifndef REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ |
6 #define REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ | 6 #define REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ |
7 | 7 |
8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
9 | 9 |
10 #import "remoting/ios/display/gl_display_handler.h" | 10 #import "remoting/ios/display/gl_display_handler.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 - (void)surfaceChanged:(const CGRect&)frame; | 70 - (void)surfaceChanged:(const CGRect&)frame; |
71 | 71 |
72 // The display handler tied to the remoting client used to display the host. | 72 // The display handler tied to the remoting client used to display the host. |
73 @property(nonatomic, strong) GlDisplayHandler* displayHandler; | 73 @property(nonatomic, strong) GlDisplayHandler* displayHandler; |
74 // The host info used to make the remoting client connection. | 74 // The host info used to make the remoting client connection. |
75 @property(nonatomic, readonly) HostInfo* hostInfo; | 75 @property(nonatomic, readonly) HostInfo* hostInfo; |
76 // The gesture interpreter used to handle gestures. | 76 // The gesture interpreter used to handle gestures. |
77 // This is valid only after the client has connected to the host. Always use | 77 // This is valid only after the client has connected to the host. Always use |
78 // RemotingClient.gestureInterpreter instead of storing the pointer separately. | 78 // RemotingClient.gestureInterpreter instead of storing the pointer separately. |
79 @property(nonatomic, readonly) remoting::GestureInterpreter* gestureInterpreter; | 79 @property(nonatomic, readonly) remoting::GestureInterpreter* gestureInterpreter; |
| 80 // @property(nonatomic, readonly) |
| 81 // remoting::KeyboardInterpreter* keyboardInterpreter; |
80 | 82 |
81 @end | 83 @end |
82 | 84 |
83 #endif // REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ | 85 #endif // REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ |
OLD | NEW |