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

Side by Side Diff: chrome/browser/ui/cocoa/autofill/autofill_dialog_window_controller.h

Issue 85863003: Change DetailOutputMap to FieldValueMap (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 21 matching lines...) Expand all
32 @protocol AutofillDialogBridge 32 @protocol AutofillDialogBridge
33 33
34 - (void)show; 34 - (void)show;
35 - (void)hide; 35 - (void)hide;
36 - (void)updateNotificationArea; 36 - (void)updateNotificationArea;
37 - (void)updateAccountChooser; 37 - (void)updateAccountChooser;
38 - (void)updateButtonStrip; 38 - (void)updateButtonStrip;
39 - (void)updateSection:(autofill::DialogSection)section; 39 - (void)updateSection:(autofill::DialogSection)section;
40 - (void)fillSection:(autofill::DialogSection)section 40 - (void)fillSection:(autofill::DialogSection)section
41 forInput:(const autofill::DetailInput&)input; 41 forInput:(const autofill::DetailInput&)input;
42 - (void)getInputs:(autofill::DetailOutputMap*)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
52 @end 52 @end
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 forInput:(const autofill::DetailInput&)input; 98 forInput:(const autofill::DetailInput&)input;
99 - (void)setTextContents:(NSString*)text 99 - (void)setTextContents:(NSString*)text
100 ofSuggestionForSection:(autofill::DialogSection)section; 100 ofSuggestionForSection:(autofill::DialogSection)section;
101 - (void)activateFieldForInput:(const autofill::DetailInput&)input; 101 - (void)activateFieldForInput:(const autofill::DetailInput&)input;
102 - (content::WebContents*)getSignInWebContents; 102 - (content::WebContents*)getSignInWebContents;
103 - (BOOL)isShowingOverlay; 103 - (BOOL)isShowingOverlay;
104 104
105 @end 105 @end
106 106
107 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ 107 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698