| 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 10 matching lines...) Expand all Loading... |
| 21 extern const base::Feature kCCTPostMessageAPI; | 21 extern const base::Feature kCCTPostMessageAPI; |
| 22 extern const base::Feature kChromeHomeFeature; | 22 extern const base::Feature kChromeHomeFeature; |
| 23 extern const base::Feature kChromeHomeExpandButton; | 23 extern const base::Feature kChromeHomeExpandButton; |
| 24 extern const base::Feature kContentSuggestionsSettings; | 24 extern const base::Feature kContentSuggestionsSettings; |
| 25 extern const base::Feature kContentSuggestionsShowSummary; | 25 extern const base::Feature kContentSuggestionsShowSummary; |
| 26 extern const base::Feature kContextualSearchSingleActions; | 26 extern const base::Feature kContextualSearchSingleActions; |
| 27 extern const base::Feature kContextualSearchUrlActions; | 27 extern const base::Feature kContextualSearchUrlActions; |
| 28 extern const base::Feature kCustomContextMenu; | 28 extern const base::Feature kCustomContextMenu; |
| 29 extern const base::Feature kCustomFeedbackUi; | 29 extern const base::Feature kCustomFeedbackUi; |
| 30 extern const base::Feature kDownloadAutoResumptionThrottling; | 30 extern const base::Feature kDownloadAutoResumptionThrottling; |
| 31 extern const base::Feature kDownloadHomeShowStorageInfo; |
| 31 extern const base::Feature kFullscreenActivity; | 32 extern const base::Feature kFullscreenActivity; |
| 32 extern const base::Feature kImportantSitesInCBD; | 33 extern const base::Feature kImportantSitesInCBD; |
| 33 extern const base::Feature kImprovedA2HS; | 34 extern const base::Feature kImprovedA2HS; |
| 34 extern const base::Feature kSearchEnginePromoExistingDevice; | 35 extern const base::Feature kSearchEnginePromoExistingDevice; |
| 35 extern const base::Feature kSearchEnginePromoNewDevice; | 36 extern const base::Feature kSearchEnginePromoNewDevice; |
| 36 extern const base::Feature kNewPhotoPicker; | 37 extern const base::Feature kNewPhotoPicker; |
| 37 extern const base::Feature kNoCreditCardAbort; | 38 extern const base::Feature kNoCreditCardAbort; |
| 38 extern const base::Feature kNTPCondensedLayoutFeature; | 39 extern const base::Feature kNTPCondensedLayoutFeature; |
| 39 extern const base::Feature kNTPCondensedTileLayoutFeature; | 40 extern const base::Feature kNTPCondensedTileLayoutFeature; |
| 40 extern const base::Feature kNTPLaunchAfterInactivity; | 41 extern const base::Feature kNTPLaunchAfterInactivity; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 52 extern const base::Feature kWebPaymentsSingleAppUiSkip; | 53 extern const base::Feature kWebPaymentsSingleAppUiSkip; |
| 53 extern const base::Feature kWebVRCardboardSupport; | 54 extern const base::Feature kWebVRCardboardSupport; |
| 54 extern const base::Feature kXGEOVisibleNetworks; | 55 extern const base::Feature kXGEOVisibleNetworks; |
| 55 | 56 |
| 56 bool RegisterChromeFeatureListJni(JNIEnv* env); | 57 bool RegisterChromeFeatureListJni(JNIEnv* env); |
| 57 | 58 |
| 58 } // namespace android | 59 } // namespace android |
| 59 } // namespace chrome | 60 } // namespace chrome |
| 60 | 61 |
| 61 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 62 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| OLD | NEW |