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

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

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, 8 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.cc
diff --git a/components/autofill/browser/risk/fingerprint.cc b/components/autofill/browser/risk/fingerprint.cc
index 6dd0b6a63584c8dd43a1fa51c96f8459bfa4a73b..a79e1ca984e640949f623f432805e773f30f90c9 100644
--- a/components/autofill/browser/risk/fingerprint.cc
+++ b/components/autofill/browser/risk/fingerprint.cc
@@ -179,7 +179,7 @@ void AddGpuInfoToFingerprint(Fingerprint_MachineCharacteristics* machine) {
class FingerprintDataLoader : public content::GpuDataManagerObserver {
public:
FingerprintDataLoader(
- int64 gaia_id,
+ uint64 gaia_id,
const gfx::Rect& window_bounds,
const gfx::Rect& content_bounds,
const WebScreenInfo& screen_info,
@@ -212,7 +212,7 @@ class FingerprintDataLoader : public content::GpuDataManagerObserver {
content::GpuDataManager* const gpu_data_manager_;
// Data that will be passed on to the next loading phase.
- const int64 gaia_id_;
+ const uint64 gaia_id_;
const gfx::Rect window_bounds_;
const gfx::Rect content_bounds_;
const WebScreenInfo screen_info_;
@@ -237,7 +237,7 @@ class FingerprintDataLoader : public content::GpuDataManagerObserver {
};
FingerprintDataLoader::FingerprintDataLoader(
- int64 gaia_id,
+ uint64 gaia_id,
const gfx::Rect& window_bounds,
const gfx::Rect& content_bounds,
const WebScreenInfo& screen_info,
@@ -366,7 +366,7 @@ void FingerprintDataLoader::FillFingerprint() {
} // namespace
void GetFingerprint(
- int64 gaia_id,
+ uint64 gaia_id,
const gfx::Rect& window_bounds,
const content::WebContents& web_contents,
const std::string& version,
@@ -393,7 +393,7 @@ void GetFingerprint(
namespace internal {
void GetFingerprintInternal(
- int64 gaia_id,
+ uint64 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