| 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_CLIENT_IOS_SESSION_REMOTING_CLIENT_H_ | 5 #ifndef REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ |
| 6 #define REMOTING_CLIENT_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/client/ios/display/gl_display_handler.h" | 10 #import "remoting/ios/display/gl_display_handler.h" |
| 11 | 11 |
| 12 #include "remoting/protocol/connection_to_host.h" | 12 #include "remoting/protocol/connection_to_host.h" |
| 13 | 13 |
| 14 namespace remoting { | 14 namespace remoting { |
| 15 | 15 |
| 16 class GestureInterpreter; | 16 class GestureInterpreter; |
| 17 | 17 |
| 18 } // namespace remoting | 18 } // namespace remoting |
| 19 | 19 |
| 20 @class HostInfo; | 20 @class HostInfo; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 80 |
| 81 @end | 81 @end |
| 82 | 82 |
| 83 #endif // REMOTING_CLIENT_IOS_SESSION_REMOTING_CLIENT_H_ | 83 #endif // REMOTING_IOS_SESSION_REMOTING_CLIENT_H_ |
| OLD | NEW |