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 24 matching lines...) Expand all Loading... | |
35 &kNTPOfflinePagesFeature, | 35 &kNTPOfflinePagesFeature, |
36 &kNTPSnippetsFeature, | 36 &kNTPSnippetsFeature, |
37 &kNTPToolbarFeature, | 37 &kNTPToolbarFeature, |
38 &kPhysicalWebFeature, | 38 &kPhysicalWebFeature, |
39 &offline_pages::kOfflinePagesBackgroundLoadingFeature, | 39 &offline_pages::kOfflinePagesBackgroundLoadingFeature, |
40 }; | 40 }; |
41 | 41 |
42 } // namespace | 42 } // namespace |
43 | 43 |
44 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", | 44 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", |
45 base::FEATURE_DISABLED_BY_DEFAULT}; | 45 base::FEATURE_ENABLED_BY_DEFAULT}; |
Theresa
2016/04/27 21:11:00
This is launching?
dmurph
2016/04/29 23:53:49
No, I just have this enabled for testing. Sorry!
| |
46 | 46 |
47 const base::Feature kMediaStyleNotification { | 47 const base::Feature kMediaStyleNotification { |
48 "MediaStyleNotification", base::FEATURE_DISABLED_BY_DEFAULT | 48 "MediaStyleNotification", base::FEATURE_DISABLED_BY_DEFAULT |
49 }; | 49 }; |
50 | 50 |
51 const base::Feature kNTPOfflinePagesFeature { | 51 const base::Feature kNTPOfflinePagesFeature { |
52 "NTPOfflinePages", base::FEATURE_DISABLED_BY_DEFAULT | 52 "NTPOfflinePages", base::FEATURE_DISABLED_BY_DEFAULT |
53 }; | 53 }; |
54 | 54 |
55 const base::Feature kNTPSnippetsFeature { | 55 const base::Feature kNTPSnippetsFeature { |
(...skipping 28 matching lines...) Expand all Loading... | |
84 NOTREACHED(); | 84 NOTREACHED(); |
85 return false; | 85 return false; |
86 } | 86 } |
87 | 87 |
88 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 88 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
89 return RegisterNativesImpl(env); | 89 return RegisterNativesImpl(env); |
90 } | 90 } |
91 | 91 |
92 } // namespace android | 92 } // namespace android |
93 } // namespace chrome | 93 } // namespace chrome |
OLD | NEW |