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 PERMISSION_CALLBACK_H 17 #define PERMISSION_CALLBACK_H 18 19 #include <future> 20 #include "napi/native_api.h" 21 #include "napi/native_node_api.h" 22 23 #include "nocopyable.h" 24 #include "on_permission_changed_callback_host.h" 25 26 struct CallbackInfo { 27 napi_env env; 28 napi_ref callback = 0; 29 int32_t uid; 30 }; 31 32 class PermissionCallback : public OHOS::AppExecFwk::OnPermissionChangedCallbackHost { 33 public: 34 PermissionCallback(napi_env env, napi_ref callback); 35 virtual ~PermissionCallback(); 36 virtual void OnChanged(const int32_t uid) override; 37 38 39 private: 40 napi_env env_; 41 napi_ref callback_; 42 DISALLOW_COPY_AND_MOVE(PermissionCallback); 43 }; 44 45 #endif // PERMISSION_CALLBACK_H