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

Issue 2022123002: Merge autofill::FormFieldData::is_checkable and is_checked (Closed)

Created:
4 years, 6 months ago by Hwanseung Lee(hs1217.lee)
Modified:
4 years, 6 months ago
CC:
browser-components-watch_chromium.org, chromium-reviews, estade+watch_chromium.org, jdonnelly+autofillwatch_chromium.org, rouslan+autofill_chromium.org, vabr+watchlistautofill_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Merge autofill::FormFieldData::is_checkable and is_checked Currently, autofill::FormFieldData contains two Boolean data members: * is_checked, and * is_checkable. As expected, the former can only be true when the latter is, but the code makes this not clear. We should merge these two Booleans into a single 3-valued enum representing the values: not checkable, checkable but unchecked, checked. BUG=614280 Committed: https://crrev.com/61b1d174d7dfd788dfe34cad3f8a0b9856894290 Cr-Commit-Position: refs/heads/master@{#399021}

Patch Set 1 #

Patch Set 2 : fixed init value #

Total comments: 10

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Total comments: 17

Patch Set 8 : #

Patch Set 9 : #

Total comments: 1

Patch Set 10 : #

Patch Set 11 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+220 lines, -60 lines) Patch
M chrome/renderer/autofill/form_autofill_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -4 lines 0 comments Download
M components/autofill/content/common/autofill_messages.h View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M components/autofill/content/renderer/form_autofill_util.cc View 1 2 3 4 5 6 7 2 chunks +3 lines, -3 lines 0 comments Download
M components/autofill/core/browser/autofill_metrics_unittest.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M components/autofill/core/browser/form_field.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M components/autofill/core/browser/form_field_unittest.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M components/autofill/core/browser/form_structure.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M components/autofill/core/browser/form_structure_unittest.cc View 1 2 3 4 5 6 7 9 chunks +10 lines, -10 lines 0 comments Download
M components/autofill/core/common/form_data_unittest.cc View 1 2 3 4 1 chunk +1 line, -2 lines 0 comments Download
M components/autofill/core/common/form_field_data.h View 1 2 3 4 5 6 7 4 chunks +14 lines, -4 lines 0 comments Download
M components/autofill/core/common/form_field_data.cc View 1 2 3 4 5 6 7 8 10 chunks +99 lines, -19 lines 0 comments Download
M components/autofill/core/common/form_field_data_unittest.cc View 1 2 3 4 5 6 7 8 9 5 chunks +81 lines, -10 lines 0 comments Download

Messages

Total messages: 42 (18 generated)
Hwanseung Lee(hs1217.lee)
please review this commit.
4 years, 6 months ago (2016-05-31 15:30:27 UTC) #3
vabr (Chromium)
Thanks for your contribution, but I'm afraid it does not LGTM so far. First, have ...
4 years, 6 months ago (2016-05-31 15:48:25 UTC) #4
Hwanseung Lee(hs1217.lee)
On 2016/05/31 15:48:25, vabr (Chromium) wrote: > Thanks for your contribution, but I'm afraid it ...
4 years, 6 months ago (2016-06-05 10:36:48 UTC) #5
vabr (Chromium)
Thank you for your improvements to the CL! Some comments: (1) Thanks for signing the ...
4 years, 6 months ago (2016-06-06 12:39:31 UTC) #8
Hwanseung Lee(hs1217.lee)
On 2016/06/06 12:39:31, vabr (Chromium) wrote: > Thank you for your improvements to the CL! ...
4 years, 6 months ago (2016-06-08 15:05:27 UTC) #10
vabr (Chromium)
Thanks, this looks very good. I have one last comment below, as one test is ...
4 years, 6 months ago (2016-06-08 16:19:55 UTC) #11
Hwanseung Lee(hs1217.lee)
On 2016/06/08 16:19:55, vabr (Chromium) wrote: > Thanks, this looks very good. I have one ...
4 years, 6 months ago (2016-06-08 22:53:32 UTC) #12
Hwanseung Lee(hs1217.lee)
On 2016/06/08 22:54:40, hs1217.lee wrote: > mailto:hs1217.lee@gmail.com changed reviewers: > + mailto:dcheng@chromium.org, mailto:inferno@chromium.org, mailto:kenrb@chromium.org could ...
4 years, 6 months ago (2016-06-08 23:00:13 UTC) #14
Hwanseung Lee(hs1217.lee)
On 2016/06/09 14:19:39, hs1217.lee wrote: > mailto:hs1217.lee@gmail.com changed reviewers: > + mailto:mkwst@chromium.org, mailto:nasko@chromium.org, mailto:palmer@chromium.org, > ...
4 years, 6 months ago (2016-06-09 14:20:16 UTC) #16
Hwanseung Lee(hs1217.lee)
On 2016/06/09 14:19:39, hs1217.lee wrote: > mailto:hs1217.lee@gmail.com changed reviewers: > + mailto:mkwst@chromium.org, mailto:nasko@chromium.org, mailto:palmer@chromium.org, > ...
4 years, 6 months ago (2016-06-09 14:20:19 UTC) #17
Mike West
Changing two booleans to an enum in the IPC LGTM.
4 years, 6 months ago (2016-06-09 14:24:17 UTC) #18
vabr (Chromium)
Patch set https://codereview.chromium.org/2022123002/#ps180001 LGTM, thanks for this change! One final note: Please do not send ...
4 years, 6 months ago (2016-06-09 14:30:58 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2022123002/180001
4 years, 6 months ago (2016-06-09 14:34:11 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/183531) mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, ...
4 years, 6 months ago (2016-06-09 14:49:36 UTC) #23
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2022123002/200001
4 years, 6 months ago (2016-06-09 15:33:39 UTC) #26
Hwanseung Lee(hs1217.lee)
@vabr i didn't check about browser_tests at patch set #9. so run trybot result was ...
4 years, 6 months ago (2016-06-09 15:41:59 UTC) #27
Hwanseung Lee(hs1217.lee)
um.. why old comments that was related patchset #1 are attached? never mind below comment.
4 years, 6 months ago (2016-06-09 15:49:28 UTC) #29
Hwanseung Lee(hs1217.lee)
On 2016/06/09 15:41:59, hs1217.lee wrote: > @vabr > > i didn't check about browser_tests at ...
4 years, 6 months ago (2016-06-09 16:10:19 UTC) #30
Hwanseung Lee(hs1217.lee)
On 2016/06/09 15:41:59, hs1217.lee wrote: > @vabr > > i didn't check about browser_tests at ...
4 years, 6 months ago (2016-06-09 16:10:22 UTC) #31
vabr (Chromium)
Hello, https://codereview.chromium.org/2022123002/#ps200001 LGTM. About the comments: could it be that you sent your recent response ...
4 years, 6 months ago (2016-06-09 16:58:59 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2022123002/200001
4 years, 6 months ago (2016-06-09 21:26:45 UTC) #37
commit-bot: I haz the power
Committed patchset #11 (id:200001)
4 years, 6 months ago (2016-06-09 21:31:29 UTC) #39
commit-bot: I haz the power
CQ bit was unchecked
4 years, 6 months ago (2016-06-09 21:31:50 UTC) #40
commit-bot: I haz the power
4 years, 6 months ago (2016-06-09 21:33:16 UTC) #42
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/61b1d174d7dfd788dfe34cad3f8a0b9856894290
Cr-Commit-Position: refs/heads/master@{#399021}

Powered by Google App Engine
This is Rietveld 408576698