| 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 11 matching lines...) Expand all Loading... |
| 22 extern const base::Feature kChromeHomeFeature; | 22 extern const base::Feature kChromeHomeFeature; |
| 23 extern const base::Feature kContentSuggestionsSettings; | 23 extern const base::Feature kContentSuggestionsSettings; |
| 24 extern const base::Feature kContextualSearchSingleActions; | 24 extern const base::Feature kContextualSearchSingleActions; |
| 25 extern const base::Feature kContextualSearchUrlActions; | 25 extern const base::Feature kContextualSearchUrlActions; |
| 26 extern const base::Feature kCustomContextMenu; | 26 extern const base::Feature kCustomContextMenu; |
| 27 extern const base::Feature kCustomFeedbackUi; | 27 extern const base::Feature kCustomFeedbackUi; |
| 28 extern const base::Feature kDownloadAutoResumptionThrottling; | 28 extern const base::Feature kDownloadAutoResumptionThrottling; |
| 29 extern const base::Feature kFullscreenActivity; | 29 extern const base::Feature kFullscreenActivity; |
| 30 extern const base::Feature kImportantSitesInCBD; | 30 extern const base::Feature kImportantSitesInCBD; |
| 31 extern const base::Feature kImprovedA2HS; | 31 extern const base::Feature kImprovedA2HS; |
| 32 extern const base::Feature kSearchEnginePromoExistingDevice; |
| 33 extern const base::Feature kSearchEnginePromoNewDevice; |
| 32 extern const base::Feature kNewPhotoPicker; | 34 extern const base::Feature kNewPhotoPicker; |
| 33 extern const base::Feature kNoCreditCardAbort; | 35 extern const base::Feature kNoCreditCardAbort; |
| 34 extern const base::Feature kNTPCondensedLayoutFeature; | 36 extern const base::Feature kNTPCondensedLayoutFeature; |
| 35 extern const base::Feature kNTPCondensedTileLayoutFeature; | 37 extern const base::Feature kNTPCondensedTileLayoutFeature; |
| 36 extern const base::Feature kNTPLaunchAfterInactivity; | 38 extern const base::Feature kNTPLaunchAfterInactivity; |
| 37 extern const base::Feature kNTPOfflinePagesFeature; | 39 extern const base::Feature kNTPOfflinePagesFeature; |
| 38 extern const base::Feature NTPShowGoogleGInOmniboxFeature; | 40 extern const base::Feature NTPShowGoogleGInOmniboxFeature; |
| 39 extern const base::Feature kPhysicalWebFeature; | 41 extern const base::Feature kPhysicalWebFeature; |
| 40 extern const base::Feature kPhysicalWebSharing; | 42 extern const base::Feature kPhysicalWebSharing; |
| 41 extern const base::Feature kSpecialLocaleFeature; | 43 extern const base::Feature kSpecialLocaleFeature; |
| 42 extern const base::Feature kSpecialLocaleWrapper; | 44 extern const base::Feature kSpecialLocaleWrapper; |
| 43 extern const base::Feature kTabsInCBD; | 45 extern const base::Feature kTabsInCBD; |
| 44 extern const base::Feature kTabReparenting; | 46 extern const base::Feature kTabReparenting; |
| 45 extern const base::Feature kUseNewDoodleApi; | 47 extern const base::Feature kUseNewDoodleApi; |
| 46 extern const base::Feature kUserMediaScreenCapturing; | 48 extern const base::Feature kUserMediaScreenCapturing; |
| 47 extern const base::Feature kVideoPersistence; | 49 extern const base::Feature kVideoPersistence; |
| 48 extern const base::Feature kWebPaymentsModifiers; | 50 extern const base::Feature kWebPaymentsModifiers; |
| 49 extern const base::Feature kWebPaymentsSingleAppUiSkip; | 51 extern const base::Feature kWebPaymentsSingleAppUiSkip; |
| 50 extern const base::Feature kWebVRCardboardSupport; | 52 extern const base::Feature kWebVRCardboardSupport; |
| 51 | 53 |
| 52 bool RegisterChromeFeatureListJni(JNIEnv* env); | 54 bool RegisterChromeFeatureListJni(JNIEnv* env); |
| 53 | 55 |
| 54 } // namespace android | 56 } // namespace android |
| 55 } // namespace chrome | 57 } // namespace chrome |
| 56 | 58 |
| 57 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 59 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| OLD | NEW |