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

Unified Diff: remoting/ios/client_keyboard.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 side-by-side diff with in-line comments
Download patch
Index: remoting/ios/client_keyboard.h
diff --git a/remoting/ios/client_keyboard.h b/remoting/ios/client_keyboard.h
new file mode 100644
index 0000000000000000000000000000000000000000..c84612204065472078d220121cbe926f8120876e
--- /dev/null
+++ b/remoting/ios/client_keyboard.h
@@ -0,0 +1,21 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_CLIENT_IOS_CLIENT_KEYBOARD_H_
+#define REMOTING_CLIENT_IOS_CLIENT_KEYBOARD_H_
+
+#import <Foundation/Foundation.h>
+#import <UIKit/UIKit.h>
+
+@interface ClientKeyboard : UIView<UIKeyInput, UITextInputTraits>
+
+@property(nonatomic) UIKeyboardAppearance keyboardAppearance;
+@property(nonatomic) UIKeyboardType keyboardType;
+@property(nonatomic) UITextAutocapitalizationType autocapitalizationType;
+@property(nonatomic) UITextAutocorrectionType autocorrectionType;
+@property(nonatomic) UITextSpellCheckingType spellCheckingType;
+
+@end
+
+#endif // REMOTING_CLIENT_IOS_CLIENT_KEYBOARD_H_

Powered by Google App Engine
This is Rietveld 408576698