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

Side by Side Diff: remoting/ios/app/client_connection_view_controller.h

Issue 2971903002: Adding error handling to the connection flow. (Closed)
Patch Set: Trying out activateConstraints. Created 3 years, 5 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
« no previous file with comments | « remoting/ios/app/BUILD.gn ('k') | remoting/ios/app/client_connection_view_controller.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_APP_CLIENT_CONNECTION_VIEW_CONTROLLER_H_ 5 #ifndef REMOTING_IOS_APP_CLIENT_CONNECTION_VIEW_CONTROLLER_H_
6 #define REMOTING_IOS_APP_CLIENT_CONNECTION_VIEW_CONTROLLER_H_ 6 #define REMOTING_IOS_APP_CLIENT_CONNECTION_VIEW_CONTROLLER_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 @class HostInfo; 10 @class HostInfo;
11 11
12 // This enumerated the differnt modes this Client Connection View can be in. 12 // This enumerated the differnt modes this Client Connection View can be in.
13 typedef NS_ENUM(NSInteger, ClientConnectionViewState) { 13 typedef NS_ENUM(NSInteger, ClientConnectionViewState) {
14 ClientViewConnecting, 14 ClientViewConnecting,
15 ClientViewPinPrompt, 15 ClientViewPinPrompt,
16 ClientViewConnected, 16 ClientViewConnected,
17 ClientViewClosed, 17 ClientViewClosed,
18 ClientViewError,
18 }; 19 };
19 20
20 // This is the view that shows the user feedback while the client connection is 21 // This is the view that shows the user feedback while the client connection is
21 // being established. If requested the view can also display the pin entry view. 22 // being established. If requested the view can also display the pin entry view.
22 // State communication for this view is handled by NSNotifications, it listens 23 // State communication for this view is handled by NSNotifications, it listens
23 // to kHostSessionStatusChanged events on the default NSNotificationCenter. 24 // to kHostSessionStatusChanged events on the default NSNotificationCenter.
24 // Internally the notification is tied to [self setState] so view setup will 25 // Internally the notification is tied to [self setState] so view setup will
25 // work the same way if state is set directly. 26 // work the same way if state is set directly.
26 @interface ClientConnectionViewController : UIViewController 27 @interface ClientConnectionViewController : UIViewController
27 28
28 - (instancetype)initWithHostInfo:(HostInfo*)hostInfo; 29 - (instancetype)initWithHostInfo:(HostInfo*)hostInfo;
29 30
30 // Setting state will change the view 31 // Setting state will change the view
31 @property(nonatomic, assign) ClientConnectionViewState state; 32 @property(nonatomic, assign) ClientConnectionViewState state;
32 33
33 @end 34 @end
34 35
35 #endif // REMOTING_IOS_APP_CLIENT_CONNECTION_VIEW_CONTROLLER_H_ 36 #endif // REMOTING_IOS_APP_CLIENT_CONNECTION_VIEW_CONTROLLER_H_
OLDNEW
« no previous file with comments | « remoting/ios/app/BUILD.gn ('k') | remoting/ios/app/client_connection_view_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698