| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 const base::Feature kNTPSnippetsFeature { | 59 const base::Feature kNTPSnippetsFeature { |
| 60 "NTPSnippets", base::FEATURE_DISABLED_BY_DEFAULT | 60 "NTPSnippets", base::FEATURE_DISABLED_BY_DEFAULT |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 const base::Feature kNTPToolbarFeature { | 63 const base::Feature kNTPToolbarFeature { |
| 64 "NTPToolbar", base::FEATURE_ENABLED_BY_DEFAULT | 64 "NTPToolbar", base::FEATURE_ENABLED_BY_DEFAULT |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 const base::Feature kNTPTransparentDoodle { |
| 68 "NTPTransparentDoodle", base::FEATURE_DISABLED_BY_DEFAULT |
| 69 }; |
| 70 |
| 67 const base::Feature kNTPFakeOmniboxTextFeature { | 71 const base::Feature kNTPFakeOmniboxTextFeature { |
| 68 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT | 72 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT |
| 69 }; | 73 }; |
| 70 | 74 |
| 71 const base::Feature kPhysicalWebFeature { | 75 const base::Feature kPhysicalWebFeature { |
| 72 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT | 76 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT |
| 73 }; | 77 }; |
| 74 | 78 |
| 75 const base::Feature kSystemDownloadManager { | 79 const base::Feature kSystemDownloadManager { |
| 76 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT | 80 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT |
| (...skipping 11 matching lines...) Expand all Loading... |
| 88 NOTREACHED(); | 92 NOTREACHED(); |
| 89 return false; | 93 return false; |
| 90 } | 94 } |
| 91 | 95 |
| 92 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 96 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 93 return RegisterNativesImpl(env); | 97 return RegisterNativesImpl(env); |
| 94 } | 98 } |
| 95 | 99 |
| 96 } // namespace android | 100 } // namespace android |
| 97 } // namespace chrome | 101 } // namespace chrome |
| OLD | NEW |