Index: remoting/host/me2me_preference_pane.h |
diff --git a/remoting/host/me2me_preference_pane.h b/remoting/host/me2me_preference_pane.h |
index 13529d3e42401002ead11efc25a3b20d9c020243..7b93d8d546a78d7722f71763d9944847816490be 100644 |
--- a/remoting/host/me2me_preference_pane.h |
+++ b/remoting/host/me2me_preference_pane.h |
@@ -37,13 +37,15 @@ class JsonHostConfig { |
} |
+@class Me2MePreferencePaneConfirmPin; |
+@class Me2MePreferencePaneDisable; |
+ |
@interface Me2MePreferencePane : NSPreferencePane { |
+ Me2MePreferencePaneConfirmPin* confirm_pin_view_; |
+ Me2MePreferencePaneDisable* disable_view_; |
+ |
IBOutlet NSTextField* status_message_; |
- IBOutlet NSButton* disable_button_; |
- IBOutlet NSTextField* pin_instruction_message_; |
- IBOutlet NSTextField* email_; |
- IBOutlet NSTextField* pin_; |
- IBOutlet NSButton* apply_button_; |
+ IBOutlet NSBox* box_; |
IBOutlet SFAuthorizationView* authorization_view_; |
// Holds the new proposed configuration if a temporary config file is |
@@ -64,8 +66,9 @@ class JsonHostConfig { |
- (void)mainViewDidLoad; |
- (void)willSelect; |
- (void)willUnselect; |
-- (IBAction)onDisable:(id)sender; |
-- (IBAction)onApply:(id)sender; |
+- (void)onDisable:(id)sender; |
+- (void)applyConfiguration:(id)sender |
+ pin:(NSString*)pin; |
- (void)onNewConfigFile:(NSNotification*)notification; |
- (void)refreshServiceStatus:(NSTimer*)timer; |
- (void)authorizationViewDidAuthorize:(SFAuthorizationView*)view; |