added more stubs

This commit is contained in:
Lasan Mahaliyana
2026-07-31 17:18:19 +05:30
parent c5c5591101
commit 8b308e9d2d
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,10 @@
load("@rules_cc//cc:cc_library.bzl", "cc_library")
licenses(["notice"])
cc_library(
name = "common",
hdrs = ["nearby_sharing_common.h"],
visibility = ["//visibility:public"],
deps = ["//proto:sharing_enums_cc_proto"],
)
@@ -0,0 +1,30 @@
// Copyright 2026 Google LLC
//
// 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
//
// https://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.
#ifndef LOCATION_NEARBY_CPP_SHARING_CLIENTS_CPP_COMMON_NEARBY_SHARING_COMMON_H_
#define LOCATION_NEARBY_CPP_SHARING_CLIENTS_CPP_COMMON_NEARBY_SHARING_COMMON_H_
#include "proto/sharing_enums.pb.h"
namespace nearby::sharing::cpp::common {
inline location::nearby::proto::sharing::PowerStatus GetPowerStatus() {
// This build does not currently expose a platform-independent way to
// distinguish battery power from AC power.
return location::nearby::proto::sharing::POWER_STATUS_UNKNOWN;
}
} // namespace nearby::sharing::cpp::common
#endif // LOCATION_NEARBY_CPP_SHARING_CLIENTS_CPP_COMMON_NEARBY_SHARING_COMMON_H_