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

Unified Diff: chrome/browser/autofill/autofill_popup_view.cc

Issue 10073018: Add Delete Support to New Autofill UI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 8 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: chrome/browser/autofill/autofill_popup_view.cc
diff --git a/chrome/browser/autofill/autofill_popup_view.cc b/chrome/browser/autofill/autofill_popup_view.cc
index 17e94d54832811e216c1a668cd0d061c3063b31e..7f3d5ea14015e9082f07e6f6e109aad6107add43 100644
--- a/chrome/browser/autofill/autofill_popup_view.cc
+++ b/chrome/browser/autofill/autofill_popup_view.cc
@@ -11,6 +11,9 @@
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/notification_types.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h"
+
+using WebKit::WebAutofillClient;
namespace {
@@ -23,7 +26,6 @@ AutofillPopupView::AutofillPopupView(
content::WebContents* web_contents,
AutofillExternalDelegate* external_delegate)
: external_delegate_(external_delegate),
- separator_index_(0),
selected_line_(kNoSelection) {
if (!web_contents)
return;
@@ -49,15 +51,12 @@ void AutofillPopupView::Hide() {
void AutofillPopupView::Show(const std::vector<string16>& autofill_values,
const std::vector<string16>& autofill_labels,
const std::vector<string16>& autofill_icons,
- const std::vector<int>& autofill_unique_ids,
- int separator_index) {
+ const std::vector<int>& autofill_unique_ids) {
autofill_values_ = autofill_values;
autofill_labels_ = autofill_labels;
autofill_icons_ = autofill_icons;
autofill_unique_ids_ = autofill_unique_ids;
- separator_index_ = separator_index;
-
ShowInternal();
}
@@ -75,8 +74,7 @@ void AutofillPopupView::SetSelectedLine(int selected_line) {
if (selected_line_ != kNoSelection) {
external_delegate_->SelectAutofillSuggestionAtIndex(
- autofill_unique_ids_[selected_line_],
- selected_line_);
+ autofill_unique_ids_[selected_line_]);
}
}
@@ -115,8 +113,57 @@ bool AutofillPopupView::RemoveSelectedLine() {
if (selected_line_ == kNoSelection)
return false;
- // TODO(csharp) add removal code.
- return false;
+ DCHECK_GE(selected_line_, 0);
+ DCHECK_LT(selected_line_, static_cast<int>(autofill_values_.size()));
+
+ if (!CanDelete(autofill_unique_ids_[selected_line_]))
+ return false;
+
+ if (autofill_unique_ids_[selected_line_] > 0) {
+ external_delegate()->RemoveAutofillProfileOrCreditCard(
+ autofill_unique_ids_[selected_line_]);
+ } else {
+ external_delegate()->RemoveAutocompleteEntry(
+ autofill_values_[selected_line_]);
+ }
+
+ // Remove the deleted element.
+ autofill_values_.erase(autofill_values_.begin() + selected_line_);
+ autofill_labels_.erase(autofill_labels_.begin() + selected_line_);
+ autofill_icons_.erase(autofill_icons_.begin() + selected_line_);
+ autofill_unique_ids_.erase(autofill_unique_ids_.begin() + selected_line_);
+
+ // Resize the popup.
+ ResizePopup();
+
+ SetSelectedLine(kNoSelection);
+
+ if (!HasAutofillEntries())
+ Hide();
+
+ return true;
+}
+
+bool AutofillPopupView::IsSeparatorIndex(int index) {
+ // TODO(csharp): Use WebAutofillClient::MenuItemIDSeparator instead.
+ // http://crbug.com/125001
+ return (index > 0 && autofill_unique_ids_[index - 1] >= 0 &&
+ autofill_unique_ids_[index] < 0);
+}
+
+bool AutofillPopupView::CanDelete(int id) {
+ return id > 0 ||
+ id == WebAutofillClient::MenuItemIDAutocompleteEntry ||
+ id == WebAutofillClient::MenuItemIDPasswordEntry;
+}
+
+bool AutofillPopupView::HasAutofillEntries() {
+ return autofill_values_.size() != 0 &&
+ (autofill_unique_ids_[0] > 0 ||
+ autofill_unique_ids_[0] ==
+ WebAutofillClient::MenuItemIDAutocompleteEntry ||
+ autofill_unique_ids_[0] == WebAutofillClient::MenuItemIDPasswordEntry ||
+ autofill_unique_ids_[0] == WebAutofillClient::MenuItemIDDataListEntry);
}
void AutofillPopupView::Observe(int type,
« no previous file with comments | « chrome/browser/autofill/autofill_popup_view.h ('k') | chrome/browser/autofill/autofill_popup_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698