mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
// Copyright 2024 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include <string>
|
|
|
|
#include "base/android/feature_map.h"
|
|
#include "base/base_jni/BaseFeatureMap_jni.h"
|
|
#include "base/feature_list.h"
|
|
#include "base/features.h"
|
|
#include "base/no_destructor.h"
|
|
|
|
namespace base::android {
|
|
|
|
namespace {
|
|
// Array of features exposed through the Java BaseFeatureMap API. Entries in
|
|
// this array may either refer to features defined in //base features.
|
|
const base::Feature* const kFeaturesExposedToJava[] = {
|
|
&features::kPostPowerMonitorBroadcastReceiverInitToBackground,
|
|
&features::kPostGetMyMemoryStateToBackground,
|
|
};
|
|
|
|
// static
|
|
base::android::FeatureMap* GetFeatureMap() {
|
|
static base::NoDestructor<base::android::FeatureMap> kFeatureMap(std::vector(
|
|
std::begin(kFeaturesExposedToJava), std::end(kFeaturesExposedToJava)));
|
|
return kFeatureMap.get();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
static jlong JNI_BaseFeatureMap_GetNativeMap(JNIEnv* env) {
|
|
return reinterpret_cast<jlong>(GetFeatureMap());
|
|
}
|
|
|
|
} // namespace base::android
|