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

Issue 15401005: Force at least first and last name for CREDIT_CARD_NAME when using Wallet. (Closed)

Created:
7 years, 7 months ago by ahutter
Modified:
7 years, 6 months ago
CC:
chromium-reviews, Raman Kakilate, benquan, ahutter, dbeam+watch-autofill_chromium.org, Dane Wallinga, dyu1, estade+watch_chromium.org, Albert Bodenhamer, Ilya Sherman
Visibility:
Public.

Description

Force at least first and last name for CREDIT_CARD_NAME when using Wallet. BUG= Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=202618

Patch Set 1 #

Total comments: 4

Patch Set 2 : Evan's review #

Total comments: 2

Patch Set 3 : Moving card holder name check #

Patch Set 4 : Reverting accidental change #

Total comments: 20

Patch Set 5 : Evan's review #

Patch Set 6 : Fixing windows compile #

Unified diffs Side-by-side diffs Delta from patch set Stats (+159 lines, -52 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_controller_impl.h View 1 2 1 chunk +0 lines, -4 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc View 1 2 3 4 5 4 chunks +60 lines, -46 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc View 1 2 2 chunks +95 lines, -2 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
ahutter
Evan, PTAL. Thanks.
7 years, 7 months ago (2013-05-21 21:09:26 UTC) #1
ahutter
Friendly ping.
7 years, 7 months ago (2013-05-23 15:36:19 UTC) #2
Evan Stade
https://codereview.chromium.org/15401005/diff/1/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc File chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc (right): https://codereview.chromium.org/15401005/diff/1/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc#newcode250 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc:250: base::string16 whitespace_collapsed_name = CollapseWhitespace(trimmed_name, collapsewhitespace trims (so I don't ...
7 years, 7 months ago (2013-05-23 16:40:37 UTC) #3
ahutter
https://codereview.chromium.org/15401005/diff/1/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc File chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc (right): https://codereview.chromium.org/15401005/diff/1/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc#newcode250 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc:250: base::string16 whitespace_collapsed_name = CollapseWhitespace(trimmed_name, On 2013/05/23 16:40:37, Evan Stade ...
7 years, 7 months ago (2013-05-23 23:19:11 UTC) #4
Evan Stade
https://codereview.chromium.org/15401005/diff/6001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc File chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc (right): https://codereview.chromium.org/15401005/diff/6001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc#newcode1124 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc:1124: if (field_values.count(CREDIT_CARD_NAME)) { can you put this in InputValidityMessage()? ...
7 years, 7 months ago (2013-05-23 23:28:40 UTC) #5
ahutter
Moved the check. PTAL. Thanks. https://codereview.chromium.org/15401005/diff/6001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc File chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc (right): https://codereview.chromium.org/15401005/diff/6001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc#newcode1124 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc:1124: if (field_values.count(CREDIT_CARD_NAME)) { On ...
7 years, 7 months ago (2013-05-24 18:36:02 UTC) #6
Evan Stade
https://codereview.chromium.org/15401005/diff/13001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc File chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc (right): https://codereview.chromium.org/15401005/diff/13001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc#newcode1140 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc:1140: if (value.empty()) how about: if (!value.empty() && !IsValidEmailAddress(value)) return ...
7 years, 7 months ago (2013-05-24 19:22:53 UTC) #7
ahutter
https://codereview.chromium.org/15401005/diff/13001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc File chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc (right): https://codereview.chromium.org/15401005/diff/13001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc#newcode1140 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc:1140: if (value.empty()) On 2013/05/24 19:22:54, Evan Stade wrote: > ...
7 years, 7 months ago (2013-05-24 19:55:43 UTC) #8
Evan Stade
lgtm https://codereview.chromium.org/15401005/diff/13001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc File chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc (right): https://codereview.chromium.org/15401005/diff/13001/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc#newcode1144 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc:1144: ASCIIToUTF16("Are you sure this is right?"); On 2013/05/24 ...
7 years, 7 months ago (2013-05-24 21:29:35 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ahutter@chromium.org/15401005/18001
7 years, 7 months ago (2013-05-24 23:01:27 UTC) #10
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 7 months ago (2013-05-25 00:52:32 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ahutter@chromium.org/15401005/41001
7 years, 6 months ago (2013-05-28 16:19:13 UTC) #12
commit-bot: I haz the power
7 years, 6 months ago (2013-05-28 19:06:51 UTC) #13
Message was sent while issue was closed.
Change committed as 202618

Powered by Google App Engine
This is Rietveld 408576698