| 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 #ifndef CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| 6 #define CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 6 #define CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include "base/feature_list.h" | 10 #include "base/feature_list.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 extern const base::Feature kNTPOfflinePagesFeature; | 42 extern const base::Feature kNTPOfflinePagesFeature; |
| 43 extern const base::Feature NTPShowGoogleGInOmniboxFeature; | 43 extern const base::Feature NTPShowGoogleGInOmniboxFeature; |
| 44 extern const base::Feature kPhysicalWebFeature; | 44 extern const base::Feature kPhysicalWebFeature; |
| 45 extern const base::Feature kPhysicalWebSharing; | 45 extern const base::Feature kPhysicalWebSharing; |
| 46 extern const base::Feature kSpecialLocaleFeature; | 46 extern const base::Feature kSpecialLocaleFeature; |
| 47 extern const base::Feature kSpecialLocaleWrapper; | 47 extern const base::Feature kSpecialLocaleWrapper; |
| 48 extern const base::Feature kTabReparenting; | 48 extern const base::Feature kTabReparenting; |
| 49 extern const base::Feature kUseNewDoodleApi; | 49 extern const base::Feature kUseNewDoodleApi; |
| 50 extern const base::Feature kUserMediaScreenCapturing; | 50 extern const base::Feature kUserMediaScreenCapturing; |
| 51 extern const base::Feature kVideoPersistence; | 51 extern const base::Feature kVideoPersistence; |
| 52 extern const base::Feature kVrBrowsingFeedback; |
| 52 extern const base::Feature kVrCustomTabBrowsing; | 53 extern const base::Feature kVrCustomTabBrowsing; |
| 53 extern const base::Feature kWebPaymentsModifiers; | 54 extern const base::Feature kWebPaymentsModifiers; |
| 54 extern const base::Feature kWebPaymentsSingleAppUiSkip; | 55 extern const base::Feature kWebPaymentsSingleAppUiSkip; |
| 55 extern const base::Feature kWebVrAutopresent; | 56 extern const base::Feature kWebVrAutopresent; |
| 56 extern const base::Feature kWebVRCardboardSupport; | 57 extern const base::Feature kWebVRCardboardSupport; |
| 57 extern const base::Feature kXGEOVisibleNetworks; | 58 extern const base::Feature kXGEOVisibleNetworks; |
| 58 | 59 |
| 59 bool RegisterChromeFeatureListJni(JNIEnv* env); | 60 bool RegisterChromeFeatureListJni(JNIEnv* env); |
| 60 | 61 |
| 61 } // namespace android | 62 } // namespace android |
| 62 } // namespace chrome | 63 } // namespace chrome |
| 63 | 64 |
| 64 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 65 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| OLD | NEW |