• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2020 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "base/feature_list.h"
6 
7 // Must come after all headers that specialize FromJniType() / ToJniType().
8 #include "base/base_jni/FeatureList_jni.h"
9 
10 namespace base {
11 namespace android {
12 
JNI_FeatureList_IsInitialized(JNIEnv * env)13 static jboolean JNI_FeatureList_IsInitialized(JNIEnv* env) {
14   return !!base::FeatureList::GetInstance();
15 }
16 
17 }  // namespace android
18 }  // namespace base
19