OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_COCOA_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_COCOA_H_ |
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_COCOA_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_COCOA_H_ |
7 | 7 |
8 #include "base/mac/scoped_nsobject.h" | 8 #include "base/mac/scoped_nsobject.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 10 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 // User cancels dialog. | 116 // User cancels dialog. |
117 - (IBAction)cancel:(id)sender; | 117 - (IBAction)cancel:(id)sender; |
118 | 118 |
119 // Forwarding AutofillDialogView calls. | 119 // Forwarding AutofillDialogView calls. |
120 - (void)hide; | 120 - (void)hide; |
121 - (void)updateNotificationArea; | 121 - (void)updateNotificationArea; |
122 - (void)updateAccountChooser; | 122 - (void)updateAccountChooser; |
123 - (void)updateSection:(autofill::DialogSection)section; | 123 - (void)updateSection:(autofill::DialogSection)section; |
124 - (void)getInputs:(autofill::DetailOutputMap*)outputs | 124 - (void)getInputs:(autofill::DetailOutputMap*)outputs |
125 forSection:(autofill::DialogSection)section; | 125 forSection:(autofill::DialogSection)section; |
| 126 - (BOOL)saveDetailsLocally; |
126 - (content::NavigationController*)showSignIn; | 127 - (content::NavigationController*)showSignIn; |
127 - (void)hideSignIn; | 128 - (void)hideSignIn; |
128 - (void)modelChanged; | 129 - (void)modelChanged; |
129 | 130 |
130 @end | 131 @end |
131 | 132 |
132 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_COCOA_H_ | 133 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_COCOA_H_ |
OLD | NEW |