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

Unified Diff: ios/chrome/browser/ui/autofill/autofill_client_ios.mm

Issue 1540423004: Add card details and legal message to Android save credit card infobar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: components/autofill review. Created 4 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: ios/chrome/browser/ui/autofill/autofill_client_ios.mm
diff --git a/ios/chrome/browser/ui/autofill/autofill_client_ios.mm b/ios/chrome/browser/ui/autofill/autofill_client_ios.mm
index 37387a8a44869524466581835a352da8a93330c4..b75c20b1d1eea9601f16d31b3208dc68d104dd57 100644
--- a/ios/chrome/browser/ui/autofill/autofill_client_ios.mm
+++ b/ios/chrome/browser/ui/autofill/autofill_client_ios.mm
@@ -4,12 +4,16 @@
#import "ios/chrome/browser/ui/autofill/autofill_client_ios.h"
+#include <utility>
+
#include "base/bind.h"
#include "base/prefs/pref_service.h"
-#include "components/autofill/core/browser/autofill_cc_infobar_delegate.h"
+#include "components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h"
+#include "components/autofill/core/browser/autofill_save_card_infobar_mobile.h"
#include "components/autofill/core/browser/ui/card_unmask_prompt_view.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
#include "components/autofill/core/common/autofill_pref_names.h"
+#include "components/infobars/core/infobar.h"
#include "components/infobars/core/infobar_manager.h"
#include "components/keyed_service/core/service_access_type.h"
#include "components/password_manager/core/browser/password_generation_manager.h"
@@ -31,7 +35,7 @@ AutofillClientIOS::AutofillClientIOS(
infobar_manager_(infobar_manager),
bridge_(bridge),
password_generation_manager_(password_generation_manager),
- identity_provider_(identity_provider.Pass()),
+ identity_provider_(std::move(identity_provider)),
unmask_controller_(browser_state->GetPrefs(),
browser_state->IsOffTheRecord()) {}
@@ -77,19 +81,25 @@ void AutofillClientIOS::OnUnmaskVerificationResult(PaymentsRpcResult result) {
}
void AutofillClientIOS::ConfirmSaveCreditCardLocally(
+ const CreditCard& card,
const base::Closure& callback) {
// This method is invoked synchronously from
// AutofillManager::OnFormSubmitted(); at the time of detecting that a form
// was submitted, the WebContents is guaranteed to be live. Since the
// InfoBarService is a WebContentsUserData, it must also be alive at this
// time.
- AutofillCCInfoBarDelegate::CreateForLocalSave(infobar_manager_, callback);
+ infobar_manager_->AddInfoBar(CreateSaveCardInfoBarMobile(
+ make_scoped_ptr(new AutofillSaveCardInfoBarDelegateMobile(
+ false, card, scoped_ptr<base::DictionaryValue>(nullptr), callback))));
}
void AutofillClientIOS::ConfirmSaveCreditCardToCloud(
- const base::Closure& callback,
- scoped_ptr<base::DictionaryValue> legal_message) {
- AutofillCCInfoBarDelegate::CreateForUpload(infobar_manager_, callback);
+ const CreditCard& card,
+ scoped_ptr<base::DictionaryValue> legal_message,
+ const base::Closure& callback) {
+ infobar_manager_->AddInfoBar(CreateSaveCardInfoBarMobile(
+ make_scoped_ptr(new AutofillSaveCardInfoBarDelegateMobile(
+ true, card, std::move(legal_message), callback))));
}
void AutofillClientIOS::LoadRiskData(
« no previous file with comments | « ios/chrome/browser/ui/autofill/autofill_client_ios.h ('k') | ios/chrome/browser/ui/autofill/autofill_save_card_infobar.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698