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

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

Issue 2706763002: bluetooth: Increase min api for Android (Closed)
Patch Set: bluetooth: Set min version to M Created 3 years, 10 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
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 998450a3a49b79e304583e73de3cb9a86d215947..d5d496051788d1a291fb98c960a07e397c301fab 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
@@ -39,7 +39,7 @@ import java.util.UUID;
* each of these classes.
*/
@JNINamespace("device")
-@TargetApi(Build.VERSION_CODES.LOLLIPOP)
+@TargetApi(Build.VERSION_CODES.M)
class Fakes {
private static final String TAG = "cr.Bluetooth";
@@ -389,7 +389,7 @@ class Fakes {
@Override
public Wrappers.BluetoothGattWrapper connectGatt(Context context, boolean autoConnect,
- Wrappers.BluetoothGattCallbackWrapper callback) {
+ Wrappers.BluetoothGattCallbackWrapper callback, int transport) {
if (mGattCallback != null && mGattCallback != callback) {
throw new IllegalArgumentException(
"BluetoothGattWrapper doesn't support calls to connectGatt() with "

Powered by Google App Engine
This is Rietveld 408576698