| Index: chrome/android/java/src/org/chromium/chrome/browser/identity/SettingsSecureBasedIdentificationGenerator.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/identity/SettingsSecureBasedIdentificationGenerator.java b/chrome/android/java/src/org/chromium/chrome/browser/identity/SettingsSecureBasedIdentificationGenerator.java
|
| index 02f2d87865f8b124a46dc3ead85fb3f8f958bf3f..2c647448aeddebff6c7f6ccb16b05c51322c9960 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/identity/SettingsSecureBasedIdentificationGenerator.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/identity/SettingsSecureBasedIdentificationGenerator.java
|
| @@ -4,6 +4,7 @@
|
|
|
| package org.chromium.chrome.browser.identity;
|
|
|
| +import android.annotation.SuppressLint;
|
| import android.content.Context;
|
| import android.provider.Settings;
|
|
|
| @@ -39,6 +40,7 @@ public class SettingsSecureBasedIdentificationGenerator implements UniqueIdentif
|
| return md5Hash == null ? "" : md5Hash;
|
| }
|
|
|
| + @SuppressLint("HardwareIds")
|
| @VisibleForTesting
|
| String getAndroidId() {
|
| return Settings.Secure.getString(mContext.getContentResolver(), Settings.Secure.ANDROID_ID);
|
|
|