| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 // Forwarding AutofillDialogView calls. | 30 // Forwarding AutofillDialogView calls. |
| 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)fillSection:(autofill::DialogSection)section | 40 - (void)fillSection:(autofill::DialogSection)section |
| 40 forInput:(const autofill::DetailInput&)input; | 41 forInput:(const autofill::DetailInput&)input; |
| 41 - (void)getInputs:(autofill::FieldValueMap*)outputs | 42 - (void)getInputs:(autofill::FieldValueMap*)outputs |
| 42 forSection:(autofill::DialogSection)section; | 43 forSection:(autofill::DialogSection)section; |
| 43 - (NSString*)getCvc; | 44 - (NSString*)getCvc; |
| 44 - (BOOL)saveDetailsLocally; | 45 - (BOOL)saveDetailsLocally; |
| 45 - (content::NavigationController*)showSignIn; | 46 - (content::NavigationController*)showSignIn; |
| 46 - (void)hideSignIn; | 47 - (void)hideSignIn; |
| 47 - (void)modelChanged; | 48 - (void)modelChanged; |
| 48 - (void)updateErrorBubble; | 49 - (void)updateErrorBubble; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 forInput:(const autofill::DetailInput&)input; | 93 forInput:(const autofill::DetailInput&)input; |
| 93 - (void)setTextContents:(NSString*)text | 94 - (void)setTextContents:(NSString*)text |
| 94 ofSuggestionForSection:(autofill::DialogSection)section; | 95 ofSuggestionForSection:(autofill::DialogSection)section; |
| 95 - (void)activateFieldForInput:(const autofill::DetailInput&)input; | 96 - (void)activateFieldForInput:(const autofill::DetailInput&)input; |
| 96 - (content::WebContents*)getSignInWebContents; | 97 - (content::WebContents*)getSignInWebContents; |
| 97 - (BOOL)isShowingOverlay; | 98 - (BOOL)isShowingOverlay; |
| 98 | 99 |
| 99 @end | 100 @end |
| 100 | 101 |
| 101 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 102 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |
| OLD | NEW |