OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 @protocol AutofillDialogBridge | 31 @protocol AutofillDialogBridge |
32 | 32 |
33 - (void)show; | 33 - (void)show; |
34 - (void)hide; | 34 - (void)hide; |
35 - (void)updateNotificationArea; | 35 - (void)updateNotificationArea; |
36 - (void)updateAccountChooser; | 36 - (void)updateAccountChooser; |
37 - (void)updateButtonStrip; | 37 - (void)updateButtonStrip; |
38 - (void)updateSection:(autofill::DialogSection)section; | 38 - (void)updateSection:(autofill::DialogSection)section; |
39 - (void)updateForErrors; | 39 - (void)updateForErrors; |
40 - (void)fillSection:(autofill::DialogSection)section | 40 - (void)fillSection:(autofill::DialogSection)section |
41 forInput:(const autofill::DetailInput&)input; | 41 forType:(const autofill::ServerFieldType)type; |
42 - (void)getInputs:(autofill::FieldValueMap*)outputs | 42 - (void)getInputs:(autofill::FieldValueMap*)outputs |
43 forSection:(autofill::DialogSection)section; | 43 forSection:(autofill::DialogSection)section; |
44 - (NSString*)getCvc; | 44 - (NSString*)getCvc; |
45 - (BOOL)saveDetailsLocally; | 45 - (BOOL)saveDetailsLocally; |
46 - (content::NavigationController*)showSignIn; | 46 - (content::NavigationController*)showSignIn; |
47 - (void)hideSignIn; | 47 - (void)hideSignIn; |
48 - (void)modelChanged; | 48 - (void)modelChanged; |
49 - (void)updateErrorBubble; | 49 - (void)updateErrorBubble; |
50 - (void)onSignInResize:(NSSize)size; | 50 - (void)onSignInResize:(NSSize)size; |
51 | 51 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 forInput:(const autofill::DetailInput&)input; | 96 forInput:(const autofill::DetailInput&)input; |
97 - (void)setTextContents:(NSString*)text | 97 - (void)setTextContents:(NSString*)text |
98 ofSuggestionForSection:(autofill::DialogSection)section; | 98 ofSuggestionForSection:(autofill::DialogSection)section; |
99 - (void)activateFieldForInput:(const autofill::DetailInput&)input; | 99 - (void)activateFieldForInput:(const autofill::DetailInput&)input; |
100 - (content::WebContents*)getSignInWebContents; | 100 - (content::WebContents*)getSignInWebContents; |
101 - (BOOL)isShowingOverlay; | 101 - (BOOL)isShowingOverlay; |
102 | 102 |
103 @end | 103 @end |
104 | 104 |
105 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 105 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |
OLD | NEW |