blob: 13e4453403ff47e3fa108ca6845997cd1c69eb62 [file] [log] [blame]
Thomas Nguyen7ea5df62022-11-28 16:41:46 -08001/*
2 * Copyright (C) 2022 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 "radio_satellite_utils.h"
18
19RadioSatelliteIndication::RadioSatelliteIndication(RadioServiceTest& parent)
20 : parent_satellite(parent) {}
21
22ndk::ScopedAStatus RadioSatelliteIndication::onPendingMessageCount(RadioIndicationType /*type*/,
23 int32_t /*count*/) {
24 return ndk::ScopedAStatus::ok();
25}
26
27ndk::ScopedAStatus RadioSatelliteIndication::onNewMessages(
28 RadioIndicationType /*type*/, const std::vector<std::string>& /*messages*/) {
29 return ndk::ScopedAStatus::ok();
30}
31
32ndk::ScopedAStatus RadioSatelliteIndication::onMessagesTransferComplete(
33 RadioIndicationType /*type*/, bool /*complete*/) {
34 return ndk::ScopedAStatus::ok();
35}
36
37ndk::ScopedAStatus RadioSatelliteIndication::onSatellitePointingInfoChanged(
38 RadioIndicationType /*type*/, const PointingInfo& /*pointingInfo*/) {
39 return ndk::ScopedAStatus::ok();
40}
41
42ndk::ScopedAStatus RadioSatelliteIndication::onSatelliteModeChanged(RadioIndicationType /*type*/,
43 SatelliteMode /*mode*/) {
44 return ndk::ScopedAStatus::ok();
45}
46
47ndk::ScopedAStatus RadioSatelliteIndication::onSatelliteRadioTechnologyChanged(
48 RadioIndicationType /*type*/, NTRadioTechnology /*technology*/) {
49 return ndk::ScopedAStatus::ok();
50}
51
52ndk::ScopedAStatus RadioSatelliteIndication::onProvisionStateChanged(
53 RadioIndicationType /*type*/, bool /*provisioned*/,
54 const std::vector<SatelliteFeature>& /*features*/) {
55 return ndk::ScopedAStatus::ok();
56}