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

Issue 2856033002: Add finch control of user population in low reputation requests (Closed)

Created:
3 years, 7 months ago by Jialiu Lin
Modified:
3 years, 7 months ago
CC:
chromium-reviews, grt+watch_chromium.org, timvolodine, vakh+watch_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Add Finch feature and parameters to control user population for low reputation requests and password reuse requests. There are 3 experiment populations that corresponds to our launch plan: (1) SBER && !incognito (2) (SBER || Sync) && !incognito (3) everyone BUG=698899 Review-Url: https://codereview.chromium.org/2856033002 Cr-Commit-Position: refs/heads/master@{#470212} Committed: https://chromium.googlesource.com/chromium/src/+/fe7f0c917485514e7ce80aac4ea56d4d4ffbb41b

Patch Set 1 #

Patch Set 2 : fix unittests #

Patch Set 3 : nit add unit tests #

Patch Set 4 : nit #

Patch Set 5 : replace PasswordReuse with ProtectedPasswordEntry #

Total comments: 22

Patch Set 6 : address comments from nparker@ #

Total comments: 4

Patch Set 7 : nit #

Total comments: 2

Patch Set 8 : comments from isherman and nparker #

Patch Set 9 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+412 lines, -59 lines) Patch
M chrome/browser/password_manager/chrome_password_manager_client_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/safe_browsing/chrome_password_protection_service.h View 1 2 3 4 5 1 chunk +22 lines, -2 lines 0 comments Download
M chrome/browser/safe_browsing/chrome_password_protection_service.cc View 1 2 3 4 5 4 chunks +46 lines, -8 lines 0 comments Download
A chrome/browser/safe_browsing/chrome_password_protection_service_unittest.cc View 1 2 3 4 5 1 chunk +228 lines, -0 lines 0 comments Download
M chrome/test/BUILD.gn View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M components/safe_browsing/csd.proto View 1 2 3 4 5 6 2 chunks +11 lines, -0 lines 0 comments Download
M components/safe_browsing/password_protection/password_protection_request.h View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M components/safe_browsing/password_protection/password_protection_request.cc View 2 chunks +2 lines, -11 lines 0 comments Download
M components/safe_browsing/password_protection/password_protection_service.h View 1 2 3 4 5 4 chunks +14 lines, -2 lines 0 comments Download
M components/safe_browsing/password_protection/password_protection_service.cc View 1 2 3 4 5 6 7 8 4 chunks +33 lines, -1 line 0 comments Download
M components/safe_browsing/password_protection/password_protection_service_unittest.cc View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -30 lines 0 comments Download
M testing/variations/fieldtrial_testing_config.json View 1 2 3 4 5 6 7 8 1 chunk +46 lines, -0 lines 0 comments Download
M tools/metrics/histograms/enums.xml View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 47 (34 generated)
Jialiu Lin
Hi nparker@, Could you take a look at this CL? Thanks!
3 years, 7 months ago (2017-05-05 04:58:38 UTC) #18
Nathan Parker
https://codereview.chromium.org/2856033002/diff/80001/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc File chrome/browser/password_manager/chrome_password_manager_client_unittest.cc (right): https://codereview.chromium.org/2856033002/diff/80001/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc#newcode87 chrome/browser/password_manager/chrome_password_manager_client_unittest.cc:87: MOCK_METHOD0(IsHistorySyncEnabled, bool()); Are these used in this file? Or ...
3 years, 7 months ago (2017-05-05 20:58:22 UTC) #23
Jialiu Lin
Thanks! https://codereview.chromium.org/2856033002/diff/80001/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc File chrome/browser/password_manager/chrome_password_manager_client_unittest.cc (right): https://codereview.chromium.org/2856033002/diff/80001/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc#newcode87 chrome/browser/password_manager/chrome_password_manager_client_unittest.cc:87: MOCK_METHOD0(IsHistorySyncEnabled, bool()); On 2017/05/05 at 20:58:21, Nathan Parker ...
3 years, 7 months ago (2017-05-05 22:19:33 UTC) #26
Jialiu Lin
+dvadym@ for chrome/browser/password_manager/* +isherman@ for testing/variations/fieldtrial_testing_config.json
3 years, 7 months ago (2017-05-05 22:46:26 UTC) #28
Ilya Sherman
https://codereview.chromium.org/2856033002/diff/120001/testing/variations/fieldtrial_testing_config.json File testing/variations/fieldtrial_testing_config.json (right): https://codereview.chromium.org/2856033002/diff/120001/testing/variations/fieldtrial_testing_config.json#newcode1962 testing/variations/fieldtrial_testing_config.json:1962: }, Only a single experiment per study will actually ...
3 years, 7 months ago (2017-05-05 22:49:31 UTC) #29
Nathan Parker
LGTM https://codereview.chromium.org/2856033002/diff/100001/chrome/browser/safe_browsing/chrome_password_protection_service.cc File chrome/browser/safe_browsing/chrome_password_protection_service.cc (right): https://codereview.chromium.org/2856033002/diff/100001/chrome/browser/safe_browsing/chrome_password_protection_service.cc#newcode92 chrome/browser/safe_browsing/chrome_password_protection_service.cc:92: if (!allowed_all_population) { nit (or not, you decide ...
3 years, 7 months ago (2017-05-05 22:51:41 UTC) #30
Jialiu Lin
@isherman, last patch also added some minor change in histograms.xml. PTAL Thanks! https://codereview.chromium.org/2856033002/diff/100001/chrome/browser/safe_browsing/chrome_password_protection_service.cc File chrome/browser/safe_browsing/chrome_password_protection_service.cc ...
3 years, 7 months ago (2017-05-05 22:58:52 UTC) #31
Ilya Sherman
Metrics and field trial changes lgtm, thanks
3 years, 7 months ago (2017-05-05 23:28:22 UTC) #32
dvadym
chrome/browser/password_manager/* LGTM
3 years, 7 months ago (2017-05-08 11:12:27 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2856033002/140001
3 years, 7 months ago (2017-05-08 17:19:53 UTC) #36
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_android on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/cast_shell_android/builds/262937) linux_android_rel_ng on master.tryserver.chromium.android (JOB_FAILED, ...
3 years, 7 months ago (2017-05-08 17:24:08 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2856033002/160001
3 years, 7 months ago (2017-05-08 18:13:48 UTC) #44
commit-bot: I haz the power
3 years, 7 months ago (2017-05-09 04:37:12 UTC) #47
Message was sent while issue was closed.
Committed patchset #9 (id:160001) as
https://chromium.googlesource.com/chromium/src/+/fe7f0c917485514e7ce80aac4ea5...

Powered by Google App Engine
This is Rietveld 408576698