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

Unified Diff: components/autofill/core/browser/autofill_manager.cc

Issue 1874493002: [Autofill] Add user actions for checkout flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: components/autofill/core/browser/autofill_manager.cc
diff --git a/components/autofill/core/browser/autofill_manager.cc b/components/autofill/core/browser/autofill_manager.cc
index 108899307a89da297da7e4975a206f77be48cf42..f184bba01022bc29b1ab8155e3651e6800bba70d 100644
--- a/components/autofill/core/browser/autofill_manager.cc
+++ b/components/autofill/core/browser/autofill_manager.cc
@@ -713,9 +713,11 @@ void AutofillManager::DidShowSuggestions(bool is_new_popup,
}
if (autofill_field->Type().group() == CREDIT_CARD)
Mathieu 2016/04/11 16:45:45 we will need brackets if we have multiple lines in
sebsg 2016/04/12 14:40:59 Done.
- credit_card_form_event_logger_->OnDidShowSuggestions();
+ credit_card_form_event_logger_->OnDidShowSuggestions(
Mathieu 2016/04/11 16:45:45 FormEventLogger is constructed with |is_for_credit
sebsg 2016/04/12 14:40:59 Done.
+ true /* is_credit_card */);
else
- address_form_event_logger_->OnDidShowSuggestions();
+ address_form_event_logger_->OnDidShowSuggestions(
+ false /* is_credit_card */);
}
}

Powered by Google App Engine
This is Rietveld 408576698