| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/common/chrome_features.h" | 5 #include "chrome/common/chrome_features.h" |
| 6 | 6 |
| 7 #include "extensions/features/features.h" | 7 #include "extensions/features/features.h" |
| 8 #include "ppapi/features/features.h" | 8 #include "ppapi/features/features.h" |
| 9 | 9 |
| 10 namespace features { | 10 namespace features { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // search engine's search page consistent. | 89 // search engine's search page consistent. |
| 90 const base::Feature kConsistentOmniboxGeolocation{ | 90 const base::Feature kConsistentOmniboxGeolocation{ |
| 91 "ConsistentOmniboxGeolocation", base::FEATURE_DISABLED_BY_DEFAULT}; | 91 "ConsistentOmniboxGeolocation", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 92 #endif | 92 #endif |
| 93 | 93 |
| 94 #if defined(OS_WIN) | 94 #if defined(OS_WIN) |
| 95 // Enables or disables desktop ios promotion, which shows a promotion to the | 95 // Enables or disables desktop ios promotion, which shows a promotion to the |
| 96 // user promoting Chrome for iOS. | 96 // user promoting Chrome for iOS. |
| 97 const base::Feature kDesktopIOSPromotion{"DesktopIOSPromotion", | 97 const base::Feature kDesktopIOSPromotion{"DesktopIOSPromotion", |
| 98 base::FEATURE_DISABLED_BY_DEFAULT}; | 98 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 99 | |
| 100 // Disables the AutoImport feature on first run. See crbug.com/555550 | |
| 101 const base::Feature kDisableFirstRunAutoImportWin{ | |
| 102 "DisableFirstRunAutoImport", base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 103 #endif | 99 #endif |
| 104 | 100 |
| 105 // Experiment to display a toggle allowing users to opt-out of persisting a | 101 // Experiment to display a toggle allowing users to opt-out of persisting a |
| 106 // Grant or Deny decision in a permission prompt. | 102 // Grant or Deny decision in a permission prompt. |
| 107 const base::Feature kDisplayPersistenceToggleInPermissionPrompts{ | 103 const base::Feature kDisplayPersistenceToggleInPermissionPrompts{ |
| 108 "DisplayPersistenceToggleInPermissionPrompts", | 104 "DisplayPersistenceToggleInPermissionPrompts", |
| 109 base::FEATURE_DISABLED_BY_DEFAULT}; | 105 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 110 | 106 |
| 111 // Enables Expect CT reporting, which sends reports for opted-in sites | 107 // Enables Expect CT reporting, which sends reports for opted-in sites |
| 112 // that don't serve sufficient Certificate Transparency information. | 108 // that don't serve sufficient Certificate Transparency information. |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 294 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 299 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 295 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 300 base::FEATURE_ENABLED_BY_DEFAULT}; | 296 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 301 | 297 |
| 302 // Enables or disables flash component updates on Chrome OS. | 298 // Enables or disables flash component updates on Chrome OS. |
| 303 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 299 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 304 base::FEATURE_ENABLED_BY_DEFAULT}; | 300 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 305 #endif // defined(OS_CHROMEOS) | 301 #endif // defined(OS_CHROMEOS) |
| 306 | 302 |
| 307 } // namespace features | 303 } // namespace features |
| OLD | NEW |