Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(469)

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 1538573004: Expose a Java API for base/feature_list.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add namespace. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
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 "chrome/browser/android/chrome_feature_list.h"
6
7 #include <string>
8
9 #include "base/android/jni_string.h"
10 #include "base/feature_list.h"
11 #include "jni/ChromeFeatureList_jni.h"
12
13 using base::android::ConvertJavaStringToUTF8;
14
15 namespace chrome {
16 namespace android {
17
18 namespace {
19
20 const base::Feature kPhysicalWebFeature {
21 "PhysicalWeb", base::FEATURE_DISABLED_BY_DEFAULT
22 };
23
24 // Array of features exposed through the Java ChromeFeatureList API. Entries in
25 // this array may either refer to features defined in this file (above) or in
26 // other locations in the code base (e.g. chrome/, components/, etc).
27 const base::Feature* kFeaturesExposedToJava[] = {
28 &kPhysicalWebFeature,
29 };
30
31 } // namespace
32
33 static jboolean IsEnabled(JNIEnv* env,
34 const JavaParamRef<jclass>& clazz,
35 const JavaParamRef<jstring>& jfeature_name) {
36 const std::string feature_name = ConvertJavaStringToUTF8(env, jfeature_name);
37 for (size_t i = 0; i < arraysize(kFeaturesExposedToJava); ++i) {
38 if (kFeaturesExposedToJava[i]->name == feature_name)
39 return base::FeatureList::IsEnabled(*kFeaturesExposedToJava[i]);
40 }
41 // Features queried via this API must be present in |kFeaturesExposedToJava|.
42 NOTREACHED();
43 return false;
44 }
45
46 bool RegisterChromeFeatureListJni(JNIEnv* env) {
47 return RegisterNativesImpl(env);
48 }
49
50 } // namespace android
51 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | chrome/browser/android/chrome_jni_registrar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698