| 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 21 matching lines...) Expand all Loading... |
| 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 &kSystemDownloadManager, |
| 41 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 41 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
| 42 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| 42 }; | 43 }; |
| 43 | 44 |
| 44 } // namespace | 45 } // namespace |
| 45 | 46 |
| 46 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", | 47 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", |
| 47 base::FEATURE_DISABLED_BY_DEFAULT}; | 48 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 48 | 49 |
| 49 const base::Feature kMediaStyleNotification { | 50 const base::Feature kMediaStyleNotification { |
| 50 "MediaStyleNotification", base::FEATURE_ENABLED_BY_DEFAULT | 51 "MediaStyleNotification", base::FEATURE_ENABLED_BY_DEFAULT |
| 51 }; | 52 }; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 NOTREACHED(); | 90 NOTREACHED(); |
| 90 return false; | 91 return false; |
| 91 } | 92 } |
| 92 | 93 |
| 93 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 94 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 94 return RegisterNativesImpl(env); | 95 return RegisterNativesImpl(env); |
| 95 } | 96 } |
| 96 | 97 |
| 97 } // namespace android | 98 } // namespace android |
| 98 } // namespace chrome | 99 } // namespace chrome |
| OLD | NEW |