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

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

Issue 2871993003: Moving the iOS directory to be remoting top level. (Closed)
Patch Set: //remoting/ios was the old landing target for the internal iOS application. Fix. 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 unified diff | Download patch
« no previous file with comments | « remoting/ios/app/main.mm ('k') | remoting/ios/app/pin_entry_view.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_CLIENT_IOS_APP_PIN_ENTRY_VIEW_H_ 5 #ifndef REMOTING_IOS_APP_PIN_ENTRY_VIEW_H_
6 #define REMOTING_CLIENT_IOS_APP_PIN_ENTRY_VIEW_H_ 6 #define REMOTING_IOS_APP_PIN_ENTRY_VIEW_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 @protocol PinEntryDelegate<NSObject> 10 @protocol PinEntryDelegate<NSObject>
11 11
12 // Notifies the delegate that a pin has been provided and if we should pair. 12 // Notifies the delegate that a pin has been provided and if we should pair.
13 @optional 13 @optional
14 - (void)didProvidePin:(NSString*)pin createPairing:(BOOL)createPairing; 14 - (void)didProvidePin:(NSString*)pin createPairing:(BOOL)createPairing;
15 15
16 @end 16 @end
17 17
18 // This view is the container for a PIN entry box, a button to submit, and the 18 // This view is the container for a PIN entry box, a button to submit, and the
19 // option box to remember the pairing. All used for entering a PIN based 19 // option box to remember the pairing. All used for entering a PIN based
20 // passcode. 20 // passcode.
21 @interface PinEntryView : UIView 21 @interface PinEntryView : UIView
22 22
23 // This delegate will handle interactions on the cells in the collection. 23 // This delegate will handle interactions on the cells in the collection.
24 @property(weak, nonatomic) id<PinEntryDelegate> delegate; 24 @property(weak, nonatomic) id<PinEntryDelegate> delegate;
25 25
26 @end 26 @end
27 27
28 #endif // REMOTING_CLIENT_IOS_APP_PIN_ENTRY_VIEW_H_ 28 #endif // REMOTING_IOS_APP_PIN_ENTRY_VIEW_H_
OLDNEW
« no previous file with comments | « remoting/ios/app/main.mm ('k') | remoting/ios/app/pin_entry_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698