| Index: remoting/ios/client_gestures.h
|
| diff --git a/remoting/ios/client_gestures.h b/remoting/ios/client_gestures.h
|
| index eac4f9f0dd6fafb1cd7067f2eaa055472b9a1655..55cd9a1df05e9249856cda0b69a153b6aa05d276 100644
|
| --- a/remoting/ios/client_gestures.h
|
| +++ b/remoting/ios/client_gestures.h
|
| @@ -28,6 +28,11 @@ typedef NS_ENUM(NSInteger, MouseButton) {
|
| RIGHT_BUTTON = 3,
|
| };
|
|
|
| +@protocol ClientGesturesDelegate<NSObject>
|
| +- (void)keyboardShouldShow;
|
| +- (void)keyboardShouldHide;
|
| +@end
|
| +
|
| @interface ClientGestures : NSObject<UIGestureRecognizerDelegate> {
|
| @private
|
| UILongPressGestureRecognizer* _longPressRecognizer;
|
| @@ -69,6 +74,8 @@ typedef NS_ENUM(NSInteger, MouseButton) {
|
| // Show hidden menus. Swipe up for keyboard, swipe down for navigation menu
|
| - (IBAction)threeFingerPanGestureTriggered:(UIPanGestureRecognizer*)sender;
|
|
|
| +@property(weak, nonatomic) id<ClientGesturesDelegate> delegate;
|
| +
|
| @end
|
|
|
| #endif // REMOTING_IOS_CLIENT_GESTURES_H_
|
|
|