1 /* 2 * Copyright 2021 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #include <cstdint> 18 19 #include <android/hardware/bluetooth/a2dp/1.0/IBluetoothAudioHost.h> 20 21 namespace android { 22 namespace hardware { 23 namespace bluetooth { 24 25 namespace a2dp { 26 namespace V1_0 { 27 class BluetoothAudioHost : public IBluetoothAudioHost { setHALInstrumentation()28 ::android::hardware::Return<void> setHALInstrumentation() { return Void(); } linkToDeath(android::sp<android::hardware::hidl_death_recipient> const &,uint64_t)29 ::android::hardware::Return<bool> linkToDeath( 30 android::sp<android::hardware::hidl_death_recipient> const&, uint64_t) { 31 return false; 32 } ping()33 ::android::hardware::Return<void> ping() { return Void(); } getDebugInfo(std::__1::function<void (android::hidl::base::V1_0::DebugInfo const &)>)34 ::android::hardware::Return<void> getDebugInfo( 35 std::__1::function<void(android::hidl::base::V1_0::DebugInfo const&)>) { 36 return Void(); 37 } notifySyspropsChanged()38 ::android::hardware::Return<void> notifySyspropsChanged() { return Void(); } unlinkToDeath(android::sp<android::hardware::hidl_death_recipient> const &)39 ::android::hardware::Return<bool> unlinkToDeath( 40 android::sp<android::hardware::hidl_death_recipient> const&) { 41 return false; 42 } 43 }; 44 45 } // namespace V1_0 46 } // namespace a2dp 47 48 namespace audio { 49 50 namespace V2_0 { 51 52 class AudioConfiguration { AudioConfiguration()53 AudioConfiguration() {} 54 }; 55 56 } // namespace V2_0 57 58 } // namespace audio 59 } // namespace bluetooth 60 } // namespace hardware 61 } // namespace android 62