Index: chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebUma.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebUma.java b/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebUma.java |
index 70c5454b8a1ca335490f10fc2188ec2b82d65c82..e551b602fa6febe7d8a2bc60e61412dfffe7ba05 100644 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebUma.java |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebUma.java |
@@ -233,9 +233,9 @@ public class PhysicalWebUma { |
handleEnum(context, createStateString(LOCATION_PERMISSION, actionName), |
locationUtils.hasAndroidLocationPermission() ? 1 : 0, BOOLEAN_BOUNDARY); |
handleEnum(context, createStateString(BLUETOOTH, actionName), |
- Utils.getBluetoothEnabledStatus(context), TRISTATE_BOUNDARY); |
+ Utils.getBluetoothEnabledStatus(), TRISTATE_BOUNDARY); |
handleEnum(context, createStateString(DATA_CONNECTION, actionName), |
- Utils.isDataConnectionActive(context) ? 1 : 0, BOOLEAN_BOUNDARY); |
+ Utils.isDataConnectionActive() ? 1 : 0, BOOLEAN_BOUNDARY); |
int preferenceState = 2; |
if (!PhysicalWeb.isOnboarding()) { |
preferenceState = PhysicalWeb.isPhysicalWebPreferenceEnabled() ? 1 : 0; |