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

Unified Diff: device/bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java

Issue 2183563002: Remove Context param from LocationUtils methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update BT Device Fakes class Created 4 years, 5 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
« no previous file with comments | « device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java
diff --git a/device/bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java b/device/bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java
index 856f4c373c9a6963be605a2548eb3a420e05afdf..be9ba8af67b8e71eb274870de5c0d00acc9af7c6 100644
--- a/device/bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java
+++ b/device/bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java
@@ -54,12 +54,12 @@ class Fakes {
public LocationUtils create() {
return new LocationUtils() {
@Override
- public boolean hasAndroidLocationPermission(Context context) {
+ public boolean hasAndroidLocationPermission() {
return hasPermission;
}
@Override
- public boolean isSystemLocationSettingEnabled(Context context) {
+ public boolean isSystemLocationSettingEnabled() {
return isEnabled;
}
};
« no previous file with comments | « device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698