blob: bb10d3cd4121c0f471e39b0c6291e6f198dc718b [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/base_jni_headers/FeatureList_jni.h"
#include "base/feature_list.h"
namespace base {
namespace android {
static jboolean JNI_FeatureList_IsInitialized(JNIEnv* env) {
return !!base::FeatureList::GetInstance();
}
} // namespace android
} // namespace base