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

Unified Diff: components/autofill/browser/risk/fingerprint.h

Issue 14904002: Load and send Wallet Risk params after user has agreed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 7 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: components/autofill/browser/risk/fingerprint.h
diff --git a/components/autofill/browser/risk/fingerprint.h b/components/autofill/browser/risk/fingerprint.h
index d498ec2d7d836063513c60449ad59a455388806a..be967115faf7d0ff9787a6b505ffc6889bff8166 100644
--- a/components/autofill/browser/risk/fingerprint.h
+++ b/components/autofill/browser/risk/fingerprint.h
@@ -37,15 +37,14 @@ class Fingerprint;
// Asynchronously calls |callback| with statistics that, collectively, provide a
// unique fingerprint for this (machine, user) pair, used for fraud prevention.
-// |gaia_id| should be the user id for Google's authentication system.
-// |window_bounds| should be the bounds of the containing Chrome window.
+// |obfuscated_gaia_id| is an obfuscated user id for Google's authentication
+// system. |window_bounds| should be the bounds of the containing Chrome window.
// |web_contents| should be the host for the page the user is interacting with.
-// |version| is the version number of the application.
-// |charset| is the default character set.
-// |accept_languages| is the Accept-Languages setting.
+// |version| is the version number of the application. |charset| is the default
+// character set. |accept_languages| is the Accept-Languages setting.
// |install_time| is the absolute time of installation.
void GetFingerprint(
- int64 gaia_id,
+ uint64 obfuscated_gaia_id,
const gfx::Rect& window_bounds,
const content::WebContents& web_contents,
const std::string& version,
@@ -60,7 +59,7 @@ void GetFingerprint(
namespace internal {
void GetFingerprintInternal(
- int64 gaia_id,
+ uint64 obfuscated_gaia_id,
const gfx::Rect& window_bounds,
const gfx::Rect& content_bounds,
const WebKit::WebScreenInfo& screen_info,

Powered by Google App Engine
This is Rietveld 408576698