| 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,
|
|
|