OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_CLIENT_IOS_CLIENT_KEYBOARD_H_ |
| 6 #define REMOTING_CLIENT_IOS_CLIENT_KEYBOARD_H_ |
| 7 |
| 8 #import <Foundation/Foundation.h> |
| 9 #import <UIKit/UIKit.h> |
| 10 |
| 11 @interface ClientKeyboard : UIView<UIKeyInput, UITextInputTraits> |
| 12 |
| 13 @property(nonatomic) UIKeyboardAppearance keyboardAppearance; |
| 14 @property(nonatomic) UIKeyboardType keyboardType; |
| 15 @property(nonatomic) UITextAutocapitalizationType autocapitalizationType; |
| 16 @property(nonatomic) UITextAutocorrectionType autocorrectionType; |
| 17 @property(nonatomic) UITextSpellCheckingType spellCheckingType; |
| 18 |
| 19 @end |
| 20 |
| 21 #endif // REMOTING_CLIENT_IOS_CLIENT_KEYBOARD_H_ |
OLD | NEW |