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

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

Issue 2026353002: [Autofill] Credit Card Assist Infobar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests Created 4 years, 5 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/assist_manager.cc
diff --git a/components/autofill/core/browser/assist_manager.cc b/components/autofill/core/browser/assist_manager.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9698730367be877a39c066502727bd94d4d31c17
--- /dev/null
+++ b/components/autofill/core/browser/assist_manager.cc
@@ -0,0 +1,60 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/autofill/core/browser/assist_manager.h"
+
+#include "base/containers/adapters.h"
+#include "base/strings/utf_string_conversions.h"
+#include "components/autofill/core/browser/autofill_experiments.h"
+#include "components/autofill/core/browser/autofill_manager.h"
+#include "components/autofill/core/browser/credit_card.h"
+#include "components/autofill/core/browser/form_structure.h"
+#include "components/autofill/core/common/autofill_constants.h"
+
+namespace autofill {
+
+AssistManager::AssistManager(AutofillManager* autofill_manager)
+ : credit_card_form_data_(nullptr),
+ autofill_manager_(autofill_manager),
+ weak_ptr_factory_(this) {}
+
+AssistManager::~AssistManager() {}
+
+void AssistManager::Reset() {
+ credit_card_form_data_.reset();
+}
please use gerrit instead 2016/07/27 17:02:26 The order of methods here does not match the order
Mathieu 2016/07/27 21:35:52 Good catch!
+
+bool AssistManager::CanShowCreditCardAssist(
+ const std::vector<FormStructure*>& form_structures) {
+#if !defined(OS_ANDROID)
+ return false;
+#else
+ if (!IsAutofillCreditCardAssistEnabled() || credit_card_form_data_)
+ return false;
+
+ for (FormStructure* cur_form : base::Reversed(form_structures)) {
+ if (cur_form->IsCompleteCreditCardForm()) {
+ credit_card_form_data_.reset(new FormData(cur_form->ToFormData()));
+ break;
+ }
+ }
+ return !!credit_card_form_data_;
+#endif
+}
+
+void AssistManager::ShowAssistForCreditCard(const CreditCard& card) {
+ DCHECK(credit_card_form_data_);
+ autofill_manager_->client()->ConfirmCreditCardFillAssist(
+ card, base::Bind(&AssistManager::OnUserDidAcceptCreditCardFill,
+ weak_ptr_factory_.GetWeakPtr(), card));
+}
+
+void AssistManager::OnUserDidAcceptCreditCardFill(const CreditCard& card) {
+ // TODO(crbug.com/630656): Trigger CVC dialog flow for card filling.
please use gerrit instead 2016/07/27 17:02:26 Example of how to trigger the CVC dialog for your
Mathieu 2016/07/27 21:35:52 Thanks!
+ autofill_manager_->FillCreditCardForm(kNoQueryId, *credit_card_form_data_,
+ credit_card_form_data_->fields[0], card,
+ base::ASCIIToUTF16(""));
+}
+
+} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698