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 28 matching lines...) Expand all Loading... |
39 &kNTPOfflinePageSuggestionsFeature, | 39 &kNTPOfflinePageSuggestionsFeature, |
40 &kNTPSnippetsFeature, | 40 &kNTPSnippetsFeature, |
41 &kNTPToolbarFeature, | 41 &kNTPToolbarFeature, |
42 &kPhysicalWebFeature, | 42 &kPhysicalWebFeature, |
43 &kPhysicalWebIgnoreOtherClientsFeature, | 43 &kPhysicalWebIgnoreOtherClientsFeature, |
44 &kReadItLaterInMenu, | 44 &kReadItLaterInMenu, |
45 &kSystemDownloadManager, | 45 &kSystemDownloadManager, |
46 &kTabReparenting, | 46 &kTabReparenting, |
47 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 47 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
48 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. | 48 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. |
| 49 &offline_pages::kOfflinePagesSharingFeature, |
49 }; | 50 }; |
50 | 51 |
51 } // namespace | 52 } // namespace |
52 | 53 |
53 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", | 54 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", |
54 base::FEATURE_DISABLED_BY_DEFAULT}; | 55 base::FEATURE_DISABLED_BY_DEFAULT}; |
55 | 56 |
56 const base::Feature kNTPMaterialDesign{"NTPMaterialDesign", | 57 const base::Feature kNTPMaterialDesign{"NTPMaterialDesign", |
57 base::FEATURE_ENABLED_BY_DEFAULT}; | 58 base::FEATURE_ENABLED_BY_DEFAULT}; |
58 | 59 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 NOTREACHED(); | 103 NOTREACHED(); |
103 return false; | 104 return false; |
104 } | 105 } |
105 | 106 |
106 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 107 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
107 return RegisterNativesImpl(env); | 108 return RegisterNativesImpl(env); |
108 } | 109 } |
109 | 110 |
110 } // namespace android | 111 } // namespace android |
111 } // namespace chrome | 112 } // namespace chrome |
OLD | NEW |