| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 &kNTPFakeOmniboxTextFeature, | 43 &kNTPFakeOmniboxTextFeature, |
| 44 &kNTPMaterialDesign, | 44 &kNTPMaterialDesign, |
| 45 &kNTPOfflinePagesFeature, | 45 &kNTPOfflinePagesFeature, |
| 46 &kNTPToolbarFeature, | 46 &kNTPToolbarFeature, |
| 47 &kPhysicalWebFeature, | 47 &kPhysicalWebFeature, |
| 48 &kPhysicalWebIgnoreOtherClientsFeature, | 48 &kPhysicalWebIgnoreOtherClientsFeature, |
| 49 &kReadItLaterInMenu, | 49 &kReadItLaterInMenu, |
| 50 &kSystemDownloadManager, | 50 &kSystemDownloadManager, |
| 51 &kTabReparenting, | 51 &kTabReparenting, |
| 52 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 52 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
| 53 &offline_pages::kBackgroundLoaderForDownloadsFeature, |
| 53 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 54 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| 54 &offline_pages::kOfflinePagesSharingFeature, | 55 &offline_pages::kOfflinePagesSharingFeature, |
| 55 &password_manager::features::kViewPasswords, | 56 &password_manager::features::kViewPasswords, |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 } // namespace | 59 } // namespace |
| 59 | 60 |
| 60 const base::Feature kAllBookmarksFeature{"AllBookmarks", | 61 const base::Feature kAllBookmarksFeature{"AllBookmarks", |
| 61 base::FEATURE_ENABLED_BY_DEFAULT}; | 62 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 62 | 63 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 NOTREACHED(); | 110 NOTREACHED(); |
| 110 return false; | 111 return false; |
| 111 } | 112 } |
| 112 | 113 |
| 113 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 114 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 114 return RegisterNativesImpl(env); | 115 return RegisterNativesImpl(env); |
| 115 } | 116 } |
| 116 | 117 |
| 117 } // namespace android | 118 } // namespace android |
| 118 } // namespace chrome | 119 } // namespace chrome |
| OLD | NEW |