1 /*
2  * Copyright (c) 2021 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 #ifndef OHOS_NAPI_ACE_PLUGIN_WANT_H
17 #define OHOS_NAPI_ACE_PLUGIN_WANT_H
18 
19 #include <map>
20 #include <string>
21 #include <vector>
22 
23 #include "js_plugin_data.h"
24 #include "want_params.h"
25 
26 namespace OHOS::Ace::Napi {
27 using namespace OHOS::AAFwk;
28 using namespace OHOS::AppExecFwk;
29 
30 napi_value AceWrapElementName(napi_env env, const ElementName& elementName);
31 bool AceUnwrapElementName(napi_env env, napi_value param, ElementName& elementName);
32 
33 napi_value AceWrapWantParams(napi_env env, const AAFwk::WantParams& wantParams);
34 bool AceUnwrapWantParams(napi_env env, napi_value param, AAFwk::WantParams& wantParams);
35 
36 napi_value AceWrapWant(napi_env env, const Want& want);
37 bool AceUnwrapWant(napi_env env, napi_value param, Want& want);
38 } // namespace OHOS::Ace::Napi
39 #endif // OHOS_NAPI_ACE_PLUGIN_WANT_H
40