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

Issue 11612017: [Autofill] Add protobuf for Google Wallet risk parameters and a utility function for filling it out. (Closed)

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

Description

[Autofill] Add protobuf for Google Wallet risk parameters and a utility function for filling it out. This data is used for fraud prevention when using Google Wallet. BUG=166596 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=179568

Patch Set 1 #

Total comments: 21

Patch Set 2 : Clean it up! #

Total comments: 12

Patch Set 3 : Parallelized, with an ear toward profile destruction #

Patch Set 4 : Van Gogh #

Patch Set 5 : Clean up! #

Total comments: 8

Patch Set 6 : Callback + test #

Total comments: 19

Patch Set 7 : TimeDeltas #

Patch Set 8 : Rebase #

Patch Set 9 : Rebase #

Total comments: 4

Patch Set 10 : Make sure the code is NOTREACHED() for now #

Patch Set 11 : No explicit NOTREACHED() for tests #

Patch Set 12 : Fix test compile #

Unified diffs Side-by-side diffs Delta from patch set Stats (+747 lines, -3 lines) Patch
M chrome/browser/autofill/DEPS View 1 2 3 4 5 6 7 8 9 10 2 chunks +8 lines, -3 lines 0 comments Download
A chrome/browser/autofill/risk/fingerprint.h View 1 2 3 4 5 6 1 chunk +40 lines, -0 lines 0 comments Download
A chrome/browser/autofill/risk/fingerprint.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +351 lines, -0 lines 0 comments Download
A chrome/browser/autofill/risk/fingerprint_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +112 lines, -0 lines 0 comments Download
A chrome/browser/autofill/risk/proto/fingerprint.proto View 1 2 3 4 5 1 chunk +219 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 10 3 chunks +16 lines, -0 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 29 (0 generated)
Ilya Sherman
This CL is not quite ready for review, but I'm uploading it now in case ...
8 years ago (2012-12-18 08:55:58 UTC) #1
Albert Bodenhamer
Just a few high level comments. https://chromiumcodereview.appspot.com/11612017/diff/1/build/protoc.gypi File build/protoc.gypi (right): https://chromiumcodereview.appspot.com/11612017/diff/1/build/protoc.gypi#newcode104 build/protoc.gypi:104: '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_full_do_not_use', Test code? ...
8 years ago (2012-12-18 17:42:22 UTC) #2
Evan Stade
https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.cc File chrome/browser/autofill/risk/machine_fingerprint.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.cc#newcode38 chrome/browser/autofill/risk/machine_fingerprint.cc:38: int64 GetMillisecondsSinceEpoch(const base::Time& timestamp) { On 2012/12/18 17:42:22, Albert ...
8 years ago (2012-12-18 22:14:34 UTC) #3
Ilya Sherman
This is now pretty much ready for a full review, though there are still two ...
8 years ago (2012-12-19 01:50:07 UTC) #4
Evan Stade
https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.cc File chrome/browser/autofill/risk/machine_fingerprint.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.cc#newcode218 chrome/browser/autofill/risk/machine_fingerprint.cc:218: scoped_ptr<BrowserNativeFingerprinting> data) { On 2012/12/19 01:50:08, Ilya Sherman wrote: ...
8 years ago (2012-12-19 03:13:27 UTC) #5
brettw
https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.cc File chrome/browser/autofill/risk/machine_fingerprint.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.cc#newcode38 chrome/browser/autofill/risk/machine_fingerprint.cc:38: int64 GetMillisecondsSinceEpoch(const base::Time& timestamp) { I think the code ...
8 years ago (2012-12-19 06:18:13 UTC) #6
Albert Bodenhamer
On Tue, Dec 18, 2012 at 7:13 PM, <estade@chromium.org> wrote: > > https://chromiumcodereview.**appspot.com/11612017/diff/1/** > chrome/browser/autofill/risk/**machine_fingerprint.cc<https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.cc> ...
8 years ago (2012-12-19 22:02:38 UTC) #7
Albert Bodenhamer
https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.h File chrome/browser/autofill/risk/machine_fingerprint.h (right): https://chromiumcodereview.appspot.com/11612017/diff/1/chrome/browser/autofill/risk/machine_fingerprint.h#newcode16 chrome/browser/autofill/risk/machine_fingerprint.h:16: namespace risk { On 2012/12/19 01:50:08, Ilya Sherman wrote: ...
8 years ago (2012-12-19 22:10:16 UTC) #8
Albert Bodenhamer
https://chromiumcodereview.appspot.com/11612017/diff/8001/chrome/browser/autofill/risk/machine_fingerprint.h File chrome/browser/autofill/risk/machine_fingerprint.h (right): https://chromiumcodereview.appspot.com/11612017/diff/8001/chrome/browser/autofill/risk/machine_fingerprint.h#newcode23 chrome/browser/autofill/risk/machine_fingerprint.h:23: void GetMachineFingerprint(int64 gaia_id, Should we consider adding some sort ...
8 years ago (2012-12-19 22:14:18 UTC) #9
Ilya Sherman
On 2012/12/19 22:02:38, Albert Bodenhamer wrote: > > chrome/browser/autofill/risk/**machine_fingerprint.cc:242: > > content::PluginService::**GetInstance()->GetPlugins( > > it ...
8 years ago (2012-12-20 04:06:49 UTC) #10
Albert Bodenhamer
lgtm
8 years ago (2012-12-20 18:31:12 UTC) #11
ahutter
https://chromiumcodereview.appspot.com/11612017/diff/18001/chrome/browser/autofill/risk/proto/fingerprint.proto File chrome/browser/autofill/risk/proto/fingerprint.proto (right): https://chromiumcodereview.appspot.com/11612017/diff/18001/chrome/browser/autofill/risk/proto/fingerprint.proto#newcode19 chrome/browser/autofill/risk/proto/fingerprint.proto:19: required int32 width = 1; Is this proto going ...
8 years ago (2012-12-20 18:35:11 UTC) #12
Evan Stade
looking good. https://codereview.chromium.org/11612017/diff/18001/chrome/browser/autofill/risk/fingerprint.cc File chrome/browser/autofill/risk/fingerprint.cc (right): https://codereview.chromium.org/11612017/diff/18001/chrome/browser/autofill/risk/fingerprint.cc#newcode193 chrome/browser/autofill/risk/fingerprint.cc:193: void MaybeFillFingerprint(); nit: \n https://codereview.chromium.org/11612017/diff/18001/chrome/browser/autofill/risk/fingerprint.cc#newcode333 chrome/browser/autofill/risk/fingerprint.cc:333: nit: ...
8 years ago (2012-12-20 21:33:27 UTC) #13
Ilya Sherman
Added a basic test. https://chromiumcodereview.appspot.com/11612017/diff/18001/chrome/browser/autofill/risk/fingerprint.cc File chrome/browser/autofill/risk/fingerprint.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/18001/chrome/browser/autofill/risk/fingerprint.cc#newcode193 chrome/browser/autofill/risk/fingerprint.cc:193: void MaybeFillFingerprint(); On 2012/12/20 21:33:27, ...
8 years ago (2012-12-21 04:51:22 UTC) #14
Evan Stade
https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint.cc File chrome/browser/autofill/risk/fingerprint.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint.cc#newcode40 chrome/browser/autofill/risk/fingerprint.cc:40: int64 GetMillisecondsSinceEpoch(const base::Time& timestamp) { I think it would ...
8 years ago (2012-12-21 22:37:07 UTC) #15
Ilya Sherman
https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint.cc File chrome/browser/autofill/risk/fingerprint.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint.cc#newcode40 chrome/browser/autofill/risk/fingerprint.cc:40: int64 GetMillisecondsSinceEpoch(const base::Time& timestamp) { On 2012/12/21 22:37:08, Evan ...
8 years ago (2012-12-22 01:21:59 UTC) #16
Evan Stade
lgtm https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint.cc File chrome/browser/autofill/risk/fingerprint.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint.cc#newcode217 chrome/browser/autofill/risk/fingerprint.cc:217: base::Callback<void(scoped_ptr<Fingerprint>)> callback_; On 2012/12/22 01:22:00, Ilya Sherman wrote: ...
8 years ago (2012-12-22 02:17:34 UTC) #17
Ilya Sherman
https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint_browsertest.cc File chrome/browser/autofill/risk/fingerprint_browsertest.cc (right): https://chromiumcodereview.appspot.com/11612017/diff/21001/chrome/browser/autofill/risk/fingerprint_browsertest.cc#newcode53 chrome/browser/autofill/risk/fingerprint_browsertest.cc:53: ASSERT_TRUE(machine.has_cpu()); On 2012/12/22 02:17:34, Evan Stade wrote: > > ...
7 years, 12 months ago (2012-12-26 23:10:28 UTC) #18
Ilya Sherman
+joi, scottmg: https://chromiumcodereview.appspot.com/11612017/diff/36002/chrome/browser/autofill/DEPS File chrome/browser/autofill/DEPS (right): https://chromiumcodereview.appspot.com/11612017/diff/36002/chrome/browser/autofill/DEPS#newcode50 chrome/browser/autofill/DEPS:50: ], Joi, is there currently a way ...
7 years, 12 months ago (2012-12-27 00:18:12 UTC) #19
Jói
https://chromiumcodereview.appspot.com/11612017/diff/36002/chrome/browser/autofill/DEPS File chrome/browser/autofill/DEPS (right): https://chromiumcodereview.appspot.com/11612017/diff/36002/chrome/browser/autofill/DEPS#newcode50 chrome/browser/autofill/DEPS:50: ], On 2012/12/27 00:18:12, Ilya Sherman wrote: > Joi, ...
7 years, 12 months ago (2012-12-27 09:54:28 UTC) #20
Ilya Sherman
https://chromiumcodereview.appspot.com/11612017/diff/36002/chrome/browser/autofill/DEPS File chrome/browser/autofill/DEPS (right): https://chromiumcodereview.appspot.com/11612017/diff/36002/chrome/browser/autofill/DEPS#newcode50 chrome/browser/autofill/DEPS:50: ], On 2012/12/27 09:54:28, Jói wrote: > On 2012/12/27 ...
7 years, 12 months ago (2012-12-28 02:13:39 UTC) #21
Ilya Sherman
Nico, could you stamp for chrome/ OWNERS approval?
7 years, 11 months ago (2013-01-25 02:57:08 UTC) #22
Ilya Sherman
Nico, could you stamp for chrome/ OWNERS approval?
7 years, 11 months ago (2013-01-25 02:57:25 UTC) #23
Nico
gypi lgtm
7 years, 11 months ago (2013-01-25 03:16:58 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/isherman@chromium.org/11612017/43001
7 years, 11 months ago (2013-01-25 20:42:29 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/isherman@chromium.org/11612017/59001
7 years, 10 months ago (2013-01-30 01:32:40 UTC) #26
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 10 months ago (2013-01-30 02:27:57 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/isherman@chromium.org/11612017/67002
7 years, 10 months ago (2013-01-30 05:24:50 UTC) #28
commit-bot: I haz the power
7 years, 10 months ago (2013-01-30 09:14:19 UTC) #29
Message was sent while issue was closed.
Change committed as 179568

Powered by Google App Engine
This is Rietveld 408576698