| Index: components/autofill/content/browser/risk/fingerprint.cc
|
| diff --git a/components/autofill/content/browser/risk/fingerprint.cc b/components/autofill/content/browser/risk/fingerprint.cc
|
| index 5700fcd6a76094fb5ef1fed5f92728c37510bd65..09041403cccfb6f7a0e404993f48044e37fe6456 100644
|
| --- a/components/autofill/content/browser/risk/fingerprint.cc
|
| +++ b/components/autofill/content/browser/risk/fingerprint.cc
|
| @@ -326,7 +326,7 @@ void FingerprintDataLoader::OnGpuInfoUpdate() {
|
|
|
| void FingerprintDataLoader::OnGotFonts(std::unique_ptr<base::ListValue> fonts) {
|
| DCHECK(!fonts_);
|
| - fonts_.reset(fonts.release());
|
| + fonts_ = std::move(fonts);
|
| MaybeFillFingerprint();
|
| }
|
|
|
|
|