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, | |
54 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 53 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
55 &offline_pages::kOfflinePagesSharingFeature, | 54 &offline_pages::kOfflinePagesSharingFeature, |
56 &password_manager::features::kViewPasswords, | 55 &password_manager::features::kViewPasswords, |
57 }; | 56 }; |
58 | 57 |
59 } // namespace | 58 } // namespace |
60 | 59 |
61 const base::Feature kAllBookmarksFeature{"AllBookmarks", | 60 const base::Feature kAllBookmarksFeature{"AllBookmarks", |
62 base::FEATURE_ENABLED_BY_DEFAULT}; | 61 base::FEATURE_ENABLED_BY_DEFAULT}; |
63 | 62 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 NOTREACHED(); | 109 NOTREACHED(); |
111 return false; | 110 return false; |
112 } | 111 } |
113 | 112 |
114 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 113 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
115 return RegisterNativesImpl(env); | 114 return RegisterNativesImpl(env); |
116 } | 115 } |
117 | 116 |
118 } // namespace android | 117 } // namespace android |
119 } // namespace chrome | 118 } // namespace chrome |
OLD | NEW |