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 "accessibility_element_operator_callback_stub.h"
17
18 namespace OHOS {
19 namespace Accessibility {
AccessibilityElementOperatorCallbackStub()20 AccessibilityElementOperatorCallbackStub::AccessibilityElementOperatorCallbackStub()
21 {}
22
~AccessibilityElementOperatorCallbackStub()23 AccessibilityElementOperatorCallbackStub::~AccessibilityElementOperatorCallbackStub()
24 {}
25
OnRemoteRequest(uint32_t code,MessageParcel & data,MessageParcel & reply,MessageOption & option)26 int AccessibilityElementOperatorCallbackStub::OnRemoteRequest(
27 uint32_t code, MessageParcel& data, MessageParcel& reply, MessageOption& option)
28 {
29 (void)code;
30 (void)data;
31 (void)reply;
32 (void)option;
33 return 0;
34 }
35
HandleSetSearchElementInfoByAccessibilityIdResult(MessageParcel & data,MessageParcel & reply)36 ErrCode AccessibilityElementOperatorCallbackStub::HandleSetSearchElementInfoByAccessibilityIdResult(
37 MessageParcel& data, MessageParcel& reply)
38 {
39 (void)data;
40 (void)reply;
41 return NO_ERROR;
42 }
43
HandleSetSearchElementInfoByTextResult(MessageParcel & data,MessageParcel & reply)44 ErrCode AccessibilityElementOperatorCallbackStub::HandleSetSearchElementInfoByTextResult(
45 MessageParcel& data, MessageParcel& reply)
46 {
47 (void)data;
48 (void)reply;
49 return NO_ERROR;
50 }
51
HandleSetFindFocusedElementInfoResult(MessageParcel & data,MessageParcel & reply)52 ErrCode AccessibilityElementOperatorCallbackStub::HandleSetFindFocusedElementInfoResult(
53 MessageParcel& data, MessageParcel& reply)
54 {
55 (void)data;
56 (void)reply;
57 return NO_ERROR;
58 }
59
HandleSetFocusMoveSearchResult(MessageParcel & data,MessageParcel & reply)60 ErrCode AccessibilityElementOperatorCallbackStub::HandleSetFocusMoveSearchResult(
61 MessageParcel& data, MessageParcel& reply)
62 {
63 (void)data;
64 (void)reply;
65 return NO_ERROR;
66 }
67
HandleSetExecuteActionResult(MessageParcel & data,MessageParcel & reply)68 ErrCode AccessibilityElementOperatorCallbackStub::HandleSetExecuteActionResult(
69 MessageParcel& data, MessageParcel& reply)
70 {
71 (void)data;
72 (void)reply;
73 return NO_ERROR;
74 }
75 } // namespace Accessibility
76 } // namespace OHOS