aboutsummaryrefslogtreecommitdiff
path: root/host/hal_generic/common/permissions_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'host/hal_generic/common/permissions_util.cc')
-rw-r--r--host/hal_generic/common/permissions_util.cc52
1 files changed, 0 insertions, 52 deletions
diff --git a/host/hal_generic/common/permissions_util.cc b/host/hal_generic/common/permissions_util.cc
deleted file mode 100644
index 31b987bd..00000000
--- a/host/hal_generic/common/permissions_util.cc
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2021 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "permissions_util.h"
-
-#include "chre/util/macros.h"
-#include "chre/util/system/napp_permissions.h"
-
-namespace android {
-namespace hardware {
-namespace contexthub {
-namespace common {
-namespace implementation {
-
-hidl_vec<hidl_string> chreToAndroidPermissions(uint32_t chrePermissions) {
- std::vector<hidl_string> androidPermissions;
- if (BITMASK_HAS_VALUE(chrePermissions,
- ::chre::NanoappPermissions::CHRE_PERMS_AUDIO)) {
- androidPermissions.push_back(kRecordAudioPerm);
- }
-
- if (BITMASK_HAS_VALUE(chrePermissions,
- ::chre::NanoappPermissions::CHRE_PERMS_GNSS) ||
- BITMASK_HAS_VALUE(chrePermissions,
- ::chre::NanoappPermissions::CHRE_PERMS_WIFI) ||
- BITMASK_HAS_VALUE(chrePermissions,
- ::chre::NanoappPermissions::CHRE_PERMS_WWAN)) {
- androidPermissions.push_back(kFineLocationPerm);
- androidPermissions.push_back(kBackgroundLocationPerm);
- }
-
- return hidl_vec(androidPermissions);
-}
-
-} // namespace implementation
-} // namespace common
-} // namespace contexthub
-} // namespace hardware
-} // namespace android