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

Side by Side Diff: remoting/ios/session/remoting_client.h

Issue 2869303003: Adding hooks to add the keyboard on screen and be able to dismiss it. (Closed)
Patch Set: Adding kKeyboardAnimationTime. 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698