| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/android/chrome_feature_list.h" | 5 #include "chrome/browser/android/chrome_feature_list.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/android/jni_string.h" | 11 #include "base/android/jni_string.h" |
| 12 #include "base/feature_list.h" | 12 #include "base/feature_list.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "chrome/common/chrome_features.h" | 14 #include "chrome/common/chrome_features.h" |
| 15 #include "components/autofill/core/browser/autofill_experiments.h" | 15 #include "components/autofill/core/browser/autofill_experiments.h" |
| 16 #include "components/ntp_snippets/features.h" | 16 #include "components/ntp_snippets/features.h" |
| 17 #include "components/offline_pages/offline_page_feature.h" | 17 #include "components/offline_pages/core/offline_page_feature.h" |
| 18 #include "components/password_manager/core/common/password_manager_features.h" | 18 #include "components/password_manager/core/common/password_manager_features.h" |
| 19 #include "content/public/common/content_features.h" | 19 #include "content/public/common/content_features.h" |
| 20 #include "jni/ChromeFeatureList_jni.h" | 20 #include "jni/ChromeFeatureList_jni.h" |
| 21 | 21 |
| 22 using base::android::ConvertJavaStringToUTF8; | 22 using base::android::ConvertJavaStringToUTF8; |
| 23 using base::android::JavaParamRef; | 23 using base::android::JavaParamRef; |
| 24 | 24 |
| 25 namespace chrome { | 25 namespace chrome { |
| 26 namespace android { | 26 namespace android { |
| 27 | 27 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 NOTREACHED(); | 132 NOTREACHED(); |
| 133 return false; | 133 return false; |
| 134 } | 134 } |
| 135 | 135 |
| 136 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 136 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 137 return RegisterNativesImpl(env); | 137 return RegisterNativesImpl(env); |
| 138 } | 138 } |
| 139 | 139 |
| 140 } // namespace android | 140 } // namespace android |
| 141 } // namespace chrome | 141 } // namespace chrome |
| OLD | NEW |