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

Unified Diff: remoting/client/ios/session/remoting_client.h

Issue 2827163004: Updating session related code to integrate with client code. (Closed)
Patch Set: Merge branch 'master' into update_session_ms1 Created 3 years, 8 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/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_

Powered by Google App Engine
This is Rietveld 408576698