| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 // search engine's search page consistent. | 81 // search engine's search page consistent. |
| 82 const base::Feature kConsistentOmniboxGeolocation{ | 82 const base::Feature kConsistentOmniboxGeolocation{ |
| 83 "ConsistentOmniboxGeolocation", base::FEATURE_DISABLED_BY_DEFAULT}; | 83 "ConsistentOmniboxGeolocation", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 84 #endif | 84 #endif |
| 85 | 85 |
| 86 #if defined(OS_WIN) | 86 #if defined(OS_WIN) |
| 87 // Enables or disables desktop ios promotion, which shows a promotion to the | 87 // Enables or disables desktop ios promotion, which shows a promotion to the |
| 88 // user promoting Chrome for iOS. | 88 // user promoting Chrome for iOS. |
| 89 const base::Feature kDesktopIOSPromotion{"DesktopIOSPromotion", | 89 const base::Feature kDesktopIOSPromotion{"DesktopIOSPromotion", |
| 90 base::FEATURE_DISABLED_BY_DEFAULT}; | 90 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 91 | |
| 92 // Disables the AutoImport feature on first run. See crbug.com/555550 | |
| 93 const base::Feature kDisableFirstRunAutoImportWin{ | |
| 94 "DisableFirstRunAutoImport", base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 95 #endif | 91 #endif |
| 96 | 92 |
| 97 // Experiment to display a toggle allowing users to opt-out of persisting a | 93 // Experiment to display a toggle allowing users to opt-out of persisting a |
| 98 // Grant or Deny decision in a permission prompt. | 94 // Grant or Deny decision in a permission prompt. |
| 99 const base::Feature kDisplayPersistenceToggleInPermissionPrompts{ | 95 const base::Feature kDisplayPersistenceToggleInPermissionPrompts{ |
| 100 "DisplayPersistenceToggleInPermissionPrompts", | 96 "DisplayPersistenceToggleInPermissionPrompts", |
| 101 base::FEATURE_DISABLED_BY_DEFAULT}; | 97 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 102 | 98 |
| 103 // Enables Expect CT reporting, which sends reports for opted-in sites | 99 // Enables Expect CT reporting, which sends reports for opted-in sites |
| 104 // that don't serve sufficient Certificate Transparency information. | 100 // that don't serve sufficient Certificate Transparency information. |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 292 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 297 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 293 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 298 base::FEATURE_ENABLED_BY_DEFAULT}; | 294 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 299 | 295 |
| 300 // Enables or disables flash component updates on Chrome OS. | 296 // Enables or disables flash component updates on Chrome OS. |
| 301 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 297 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 302 base::FEATURE_ENABLED_BY_DEFAULT}; | 298 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 303 #endif // defined(OS_CHROMEOS) | 299 #endif // defined(OS_CHROMEOS) |
| 304 | 300 |
| 305 } // namespace features | 301 } // namespace features |
| OLD | NEW |