1 /*
2 * Copyright (C) 2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "accessible_ability_manager_service_stub.h"
17
18 namespace OHOS {
19 namespace Accessibility {
AccessibleAbilityManagerServiceStub()20 AccessibleAbilityManagerServiceStub::AccessibleAbilityManagerServiceStub()
21 {}
~AccessibleAbilityManagerServiceStub()22 AccessibleAbilityManagerServiceStub::~AccessibleAbilityManagerServiceStub()
23 {}
OnRemoteRequest(uint32_t code,MessageParcel & data,MessageParcel & reply,MessageOption & option)24 int AccessibleAbilityManagerServiceStub::OnRemoteRequest(
25 uint32_t code, MessageParcel& data, MessageParcel& reply, MessageOption& option)
26 {
27 (void)code;
28 (void)data;
29 (void)reply;
30 (void)option;
31 return true;
32 }
33
HandleSendEvent(MessageParcel & data,MessageParcel & reply)34 ErrCode AccessibleAbilityManagerServiceStub::HandleSendEvent(MessageParcel& data, MessageParcel& reply)
35 {
36 (void)data;
37 (void)reply;
38 return NO_ERROR;
39 }
40
HandleRegisterStateCallback(MessageParcel & data,MessageParcel & reply)41 ErrCode AccessibleAbilityManagerServiceStub::HandleRegisterStateCallback(MessageParcel& data, MessageParcel& reply)
42 {
43 (void)data;
44 (void)reply;
45 return NO_ERROR;
46 }
47
HandleGetAbilityList(MessageParcel & data,MessageParcel & reply)48 ErrCode AccessibleAbilityManagerServiceStub::HandleGetAbilityList(MessageParcel& data, MessageParcel& reply)
49 {
50 (void)data;
51 (void)reply;
52 return NO_ERROR;
53 }
54
HandleRegisterAccessibilityElementOperator(MessageParcel & data,MessageParcel & reply)55 ErrCode AccessibleAbilityManagerServiceStub::HandleRegisterAccessibilityElementOperator(
56 MessageParcel& data, MessageParcel& reply)
57 {
58 (void)data;
59 (void)reply;
60 return NO_ERROR;
61 }
62
HandleDeregisterAccessibilityElementOperator(MessageParcel & data,MessageParcel & reply)63 ErrCode AccessibleAbilityManagerServiceStub::HandleDeregisterAccessibilityElementOperator(
64 MessageParcel& data, MessageParcel& reply)
65 {
66 (void)data;
67 (void)reply;
68 return NO_ERROR;
69 }
70 } // namespace Accessibility
71 } // namespace OHOS