| 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 | |
| 71 const base::Feature kNTPFakeOmniboxTextFeature { | 67 const base::Feature kNTPFakeOmniboxTextFeature { |
| 72 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT | 68 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT |
| 73 }; | 69 }; |
| 74 | 70 |
| 75 const base::Feature kPhysicalWebFeature { | 71 const base::Feature kPhysicalWebFeature { |
| 76 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT | 72 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT |
| 77 }; | 73 }; |
| 78 | 74 |
| 79 const base::Feature kSystemDownloadManager { | 75 const base::Feature kSystemDownloadManager { |
| 80 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT | 76 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT |
| (...skipping 11 matching lines...) Expand all Loading... |
| 92 NOTREACHED(); | 88 NOTREACHED(); |
| 93 return false; | 89 return false; |
| 94 } | 90 } |
| 95 | 91 |
| 96 bool RegisterChromeFeatureListJni(JNIEnv* env) { | 92 bool RegisterChromeFeatureListJni(JNIEnv* env) { |
| 97 return RegisterNativesImpl(env); | 93 return RegisterNativesImpl(env); |
| 98 } | 94 } |
| 99 | 95 |
| 100 } // namespace android | 96 } // namespace android |
| 101 } // namespace chrome | 97 } // namespace chrome |
| OLD | NEW |