OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #import "me2me_preference_pane_confirm_pin.h" | 5 #import "me2me_preference_pane_confirm_pin.h" |
6 | 6 |
7 @implementation Me2MePreferencePaneConfirmPin | 7 @implementation Me2MePreferencePaneConfirmPin |
8 | 8 |
9 @synthesize delegate = delegate_; | 9 @synthesize delegate = delegate_; |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... |
35 - (void)resetPin { | 35 - (void)resetPin { |
36 [pin_ setStringValue:@""]; | 36 [pin_ setStringValue:@""]; |
37 } | 37 } |
38 | 38 |
39 - (void)onApply:(id)sender { | 39 - (void)onApply:(id)sender { |
40 [delegate_ applyConfiguration:self | 40 [delegate_ applyConfiguration:self |
41 pin:[pin_ stringValue]]; | 41 pin:[pin_ stringValue]]; |
42 } | 42 } |
43 | 43 |
44 @end | 44 @end |
OLD | NEW |