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