| Index: remoting/client/ios/session/remoting_client.h
|
| diff --git a/remoting/client/ios/session/remoting_client.h b/remoting/client/ios/session/remoting_client.h
|
| index cbaa425def34e2693b94bcc014b7e222d8c93315..c6bed3804da413b774542270914b5a7071c6245a 100644
|
| --- a/remoting/client/ios/session/remoting_client.h
|
| +++ b/remoting/client/ios/session/remoting_client.h
|
| @@ -5,14 +5,25 @@
|
| #ifndef REMOTING_CLIENT_IOS_SESSION_REMOTING_CLIENT_H_
|
| #define REMOTING_CLIENT_IOS_SESSION_REMOTING_CLIENT_H_
|
|
|
| +#import <Foundation/Foundation.h>
|
| +
|
| +#import "remoting/client/ios/display/gl_display_handler.h"
|
| +
|
| +#include "remoting/protocol/connection_to_host.h"
|
| +#include "remoting/protocol/session.h"
|
| +
|
| +namespace remoting {
|
| +struct ConnectToHostInfo;
|
| +}
|
| +
|
| @interface RemotingClient : NSObject
|
|
|
| - (void)connectToHost:(const remoting::ConnectToHostInfo&)info;
|
|
|
| // Mirrors the native client session delegate interface:
|
|
|
| -- (void)onConnectionState:(protocol::ConnectionToHost::State)state
|
| - error:(protocol::ErrorCode)error;
|
| +- (void)onConnectionState:(remoting::protocol::ConnectionToHost::State)state
|
| + error:(remoting::protocol::ErrorCode)error;
|
|
|
| - (void)commitPairingCredentialsForHost:(NSString*)host
|
| id:(NSString*)id
|
| @@ -26,6 +37,8 @@
|
|
|
| - (void)handleExtensionMessageOfType:(NSString*)type message:(NSString*)message;
|
|
|
| +@property(nonatomic, strong) GlDisplayHandler* displayHandler;
|
| +
|
| @end
|
|
|
| #endif // REMOTING_CLIENT_IOS_SESSION_REMOTING_CLIENT_H_
|
|
|