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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm

Issue 127153004: Change AutofillDialogControllerImpl::input_showing_popup_ -> popup_input_type_ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
index 582c031eba101e688f458396ec51bcb5aad12946..cf1e7c4de958864f1626178f7f73ca0596c7f8e6 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
@@ -95,8 +95,8 @@ void AutofillDialogCocoa::UpdateSection(DialogSection section) {
}
void AutofillDialogCocoa::FillSection(DialogSection section,
- const DetailInput& originating_input) {
- [sheet_delegate_ fillSection:section forInput:originating_input];
+ ServerFieldType originating_type) {
+ [sheet_delegate_ fillSection:section forType:originating_type];
}
void AutofillDialogCocoa::GetUserInput(DialogSection section,
@@ -108,7 +108,7 @@ base::string16 AutofillDialogCocoa::GetCvc() {
return base::SysNSStringToUTF16([sheet_delegate_ getCvc]);
}
-bool AutofillDialogCocoa::HitTestInput(const DetailInput& input,
+bool AutofillDialogCocoa::HitTestInput(ServerFieldType type,
const gfx::Point& screen_point) {
// TODO(dbeam): implement.
return false;

Powered by Google App Engine
This is Rietveld 408576698