| 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 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 &features::kCredentialManagementAPI, | 30 &features::kCredentialManagementAPI, |
| 31 &features::kSimplifiedFullscreenUI, | 31 &features::kSimplifiedFullscreenUI, |
| 32 &kImportantSitesInCBD, | 32 &kImportantSitesInCBD, |
| 33 &kMediaStyleNotification, | 33 &kMediaStyleNotification, |
| 34 &kNTPFakeOmniboxTextFeature, | 34 &kNTPFakeOmniboxTextFeature, |
| 35 &kNTPMaterialDesign, | 35 &kNTPMaterialDesign, |
| 36 &kNTPOfflinePagesFeature, | 36 &kNTPOfflinePagesFeature, |
| 37 &kNTPSnippetsFeature, | 37 &kNTPSnippetsFeature, |
| 38 &kNTPToolbarFeature, | 38 &kNTPToolbarFeature, |
| 39 &kPhysicalWebFeature, | 39 &kPhysicalWebFeature, |
| 40 &kSystemDownloadManager, |
| 40 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 41 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
| 41 }; | 42 }; |
| 42 | 43 |
| 43 } // namespace | 44 } // namespace |
| 44 | 45 |
| 45 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", | 46 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", |
| 46 base::FEATURE_DISABLED_BY_DEFAULT}; | 47 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 47 | 48 |
| 48 const base::Feature kMediaStyleNotification { | 49 const base::Feature kMediaStyleNotification { |
| 49 "MediaStyleNotification", base::FEATURE_ENABLED_BY_DEFAULT | 50 "MediaStyleNotification", base::FEATURE_ENABLED_BY_DEFAULT |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 NOTREACHED(); | 89 NOTREACHED(); |
| 89 return false; | 90 return false; |
| 90 } | 91 } |
| 91 | 92 |
| 92 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 93 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 93 return RegisterNativesImpl(env); | 94 return RegisterNativesImpl(env); |
| 94 } | 95 } |
| 95 | 96 |
| 96 } // namespace android | 97 } // namespace android |
| 97 } // namespace chrome | 98 } // namespace chrome |
| OLD | NEW |