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

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: fix tests 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 20 matching lines...) Expand all
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)fillSection:(autofill::DialogSection)section 39 - (void)fillSection:(autofill::DialogSection)section
40 forInput:(const autofill::DetailInput&)input; 40 forInput:(const autofill::DetailInput&)input;
41 - (void)getInputs:(autofill::DetailOutputMap*)outputs 41 - (void)getInputs:(autofill::FieldValueMap*)outputs
42 forSection:(autofill::DialogSection)section; 42 forSection:(autofill::DialogSection)section;
43 - (NSString*)getCvc; 43 - (NSString*)getCvc;
44 - (BOOL)saveDetailsLocally; 44 - (BOOL)saveDetailsLocally;
45 - (content::NavigationController*)showSignIn; 45 - (content::NavigationController*)showSignIn;
46 - (void)hideSignIn; 46 - (void)hideSignIn;
47 - (void)modelChanged; 47 - (void)modelChanged;
48 - (void)updateErrorBubble; 48 - (void)updateErrorBubble;
49 - (void)onSignInResize:(NSSize)size; 49 - (void)onSignInResize:(NSSize)size;
50 50
51 @end 51 @end
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 forInput:(const autofill::DetailInput&)input; 92 forInput:(const autofill::DetailInput&)input;
93 - (void)setTextContents:(NSString*)text 93 - (void)setTextContents:(NSString*)text
94 ofSuggestionForSection:(autofill::DialogSection)section; 94 ofSuggestionForSection:(autofill::DialogSection)section;
95 - (void)activateFieldForInput:(const autofill::DetailInput&)input; 95 - (void)activateFieldForInput:(const autofill::DetailInput&)input;
96 - (content::WebContents*)getSignInWebContents; 96 - (content::WebContents*)getSignInWebContents;
97 - (BOOL)isShowingOverlay; 97 - (BOOL)isShowingOverlay;
98 98
99 @end 99 @end
100 100
101 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ 101 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698