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

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: Increase min API for other classes Created 3 years, 8 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/Wrappers.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 b4a1b34cec29c354145561c8b65211351de923cb..5dc82771d76a43f0d348d5c427125b0623a7b4ed 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";
@@ -412,7 +412,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 "
« no previous file with comments | « device/bluetooth/android/java/src/org/chromium/device/bluetooth/Wrappers.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698