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

Unified Diff: remoting/host/me2me_preference_pane.h

Issue 10411032: Implement Mac pref-pane UI mockups (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix license header Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/host/me2me_preference_pane.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | remoting/host/me2me_preference_pane.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698