| 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 25 matching lines...) Expand all Loading... |
| 36 extern const base::Feature kNoCreditCardAbort; | 36 extern const base::Feature kNoCreditCardAbort; |
| 37 extern const base::Feature kNTPCondensedLayoutFeature; | 37 extern const base::Feature kNTPCondensedLayoutFeature; |
| 38 extern const base::Feature kNTPCondensedTileLayoutFeature; | 38 extern const base::Feature kNTPCondensedTileLayoutFeature; |
| 39 extern const base::Feature kNTPLaunchAfterInactivity; | 39 extern const base::Feature kNTPLaunchAfterInactivity; |
| 40 extern const base::Feature kNTPOfflinePagesFeature; | 40 extern const base::Feature kNTPOfflinePagesFeature; |
| 41 extern const base::Feature NTPShowGoogleGInOmniboxFeature; | 41 extern const base::Feature NTPShowGoogleGInOmniboxFeature; |
| 42 extern const base::Feature kPhysicalWebFeature; | 42 extern const base::Feature kPhysicalWebFeature; |
| 43 extern const base::Feature kPhysicalWebSharing; | 43 extern const base::Feature kPhysicalWebSharing; |
| 44 extern const base::Feature kSpecialLocaleFeature; | 44 extern const base::Feature kSpecialLocaleFeature; |
| 45 extern const base::Feature kSpecialLocaleWrapper; | 45 extern const base::Feature kSpecialLocaleWrapper; |
| 46 extern const base::Feature kTabsInCBD; | |
| 47 extern const base::Feature kTabReparenting; | 46 extern const base::Feature kTabReparenting; |
| 48 extern const base::Feature kUseNewDoodleApi; | 47 extern const base::Feature kUseNewDoodleApi; |
| 49 extern const base::Feature kUserMediaScreenCapturing; | 48 extern const base::Feature kUserMediaScreenCapturing; |
| 50 extern const base::Feature kVideoPersistence; | 49 extern const base::Feature kVideoPersistence; |
| 51 extern const base::Feature kWebPaymentsModifiers; | 50 extern const base::Feature kWebPaymentsModifiers; |
| 52 extern const base::Feature kWebPaymentsSingleAppUiSkip; | 51 extern const base::Feature kWebPaymentsSingleAppUiSkip; |
| 53 extern const base::Feature kWebVRCardboardSupport; | 52 extern const base::Feature kWebVRCardboardSupport; |
| 54 | 53 |
| 55 bool RegisterChromeFeatureListJni(JNIEnv* env); | 54 bool RegisterChromeFeatureListJni(JNIEnv* env); |
| 56 | 55 |
| 57 } // namespace android | 56 } // namespace android |
| 58 } // namespace chrome | 57 } // namespace chrome |
| 59 | 58 |
| 60 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 59 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| OLD | NEW |