Index: remoting/ios/host_preferences.h |
diff --git a/remoting/ios/host_preferences.h b/remoting/ios/host_preferences.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d79e15f92e59100f6330895d04ecd6d0e2d02f1d |
--- /dev/null |
+++ b/remoting/ios/host_preferences.h |
@@ -0,0 +1,26 @@ |
+// Copyright 2014 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_IOS_HOST_PREFERENCES_H_ |
+#define REMOTING_IOS_HOST_PREFERENCES_H_ |
+ |
+#import <CoreData/CoreData.h> |
+ |
+// A HostPreferences contains details to negotiate and maintain a connection |
+// to a remote Chromoting host |
+@interface HostPreferences : NSManagedObject |
+ |
+// Is a prompt is needed to reconnect or continue the connection to |
+// the host |
+@property(nonatomic, copy) NSNumber* askForPin; |
+// Several properties are populated from the jabber jump server |
+@property(nonatomic, copy) NSString* hostId; |
+// Supplied by client via UI interaction |
+@property(nonatomic, copy) NSString* hostPin; |
+@property(nonatomic, copy) NSString* pairId; |
+@property(nonatomic, copy) NSString* secret; |
+ |
+@end |
+ |
+#endif // REMOTING_IOS_HOST_PREFERENCES_H_ |