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

Unified Diff: remoting/host/me2me_preference_pane_confirm_pin.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 | « remoting/host/me2me_preference_pane.xib ('k') | remoting/host/me2me_preference_pane_confirm_pin.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/me2me_preference_pane_confirm_pin.h
diff --git a/remoting/host/me2me_preference_pane_confirm_pin.h b/remoting/host/me2me_preference_pane_confirm_pin.h
new file mode 100644
index 0000000000000000000000000000000000000000..f16ada363504b7dbb3d99f87e08a27d86ee77605
--- /dev/null
+++ b/remoting/host/me2me_preference_pane_confirm_pin.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import <Cocoa/Cocoa.h>
+
+@protocol Me2MePreferencePaneConfirmPinHandler <NSObject>
+- (void)applyConfiguration:(id)sender pin:(NSString*)pin;
+@end
+
+@interface Me2MePreferencePaneConfirmPin : NSViewController {
+ IBOutlet NSTextField* email_;
+ IBOutlet NSTextField* pin_;
+ IBOutlet NSButton* apply_button_;
+ id delegate_;
+}
+
+@property (retain) id delegate;
+
+- (void)setEmail:(NSString*)email;
+- (void)setButtonText:(NSString*)text;
+- (void)setEnabled:(BOOL)enabled;
+- (void)resetPin;
+- (IBAction)onApply:(id)sender;
+
+@end
« no previous file with comments | « remoting/host/me2me_preference_pane.xib ('k') | remoting/host/me2me_preference_pane_confirm_pin.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698