diff options
| -rw-r--r-- | src/com/android/nfc/NfcService.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/com/android/nfc/NfcService.java b/src/com/android/nfc/NfcService.java index 026cb7b1..c7ac5815 100644 --- a/src/com/android/nfc/NfcService.java +++ b/src/com/android/nfc/NfcService.java @@ -1,4 +1,7 @@ /* + * Copyright (c) 2015, The Linux Foundation. All rights reserved. + * Not a Contribution. + * * Copyright (C) 2010 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -1093,6 +1096,13 @@ public class NfcService implements DeviceHostListener { } final class NfcAdapterService extends INfcAdapter.Stub { + /** + * An interface for vendor specific extensions + */ + public IBinder getNfcAdapterVendorInterface(String vendor) { + return null; + } + @Override public boolean enable() throws RemoteException { NfcPermissions.enforceAdminPermissions(mContext); |
