| 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 namespace features { | 7 namespace features { |
| 8 | 8 |
| 9 // All features in alphabetical order. | 9 // All features in alphabetical order. |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "BackspaceGoesBack", base::FEATURE_DISABLED_BY_DEFAULT | 34 "BackspaceGoesBack", base::FEATURE_DISABLED_BY_DEFAULT |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 // Enables or disables whether permission prompts are automatically blocked | 37 // Enables or disables whether permission prompts are automatically blocked |
| 38 // after the user has explicitly dismissed them too many times. | 38 // after the user has explicitly dismissed them too many times. |
| 39 const base::Feature kBlockPromptsIfDismissedOften{ | 39 const base::Feature kBlockPromptsIfDismissedOften{ |
| 40 "BlockPromptsIfDismissedOften", base::FEATURE_DISABLED_BY_DEFAULT}; | 40 "BlockPromptsIfDismissedOften", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 41 | 41 |
| 42 // Experiment to disable small cross-origin content. (http://crbug.com/608886) | 42 // Experiment to disable small cross-origin content. (http://crbug.com/608886) |
| 43 const base::Feature kBlockSmallContent{"BlockSmallPluginContent", | 43 const base::Feature kBlockSmallContent{"BlockSmallPluginContent", |
| 44 base::FEATURE_DISABLED_BY_DEFAULT}; | 44 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 45 | 45 |
| 46 // Fixes for browser hang bugs are deployed in a field trial in order to measure | 46 // Fixes for browser hang bugs are deployed in a field trial in order to measure |
| 47 // their impact. See crbug.com/478209. | 47 // their impact. See crbug.com/478209. |
| 48 const base::Feature kBrowserHangFixesExperiment{ | 48 const base::Feature kBrowserHangFixesExperiment{ |
| 49 "BrowserHangFixesExperiment", base::FEATURE_DISABLED_BY_DEFAULT}; | 49 "BrowserHangFixesExperiment", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 50 | 50 |
| 51 #if defined(OS_WIN) | 51 #if defined(OS_WIN) |
| 52 // Disables the AutoImport feature on first run. See crbug.com/555550 | 52 // Disables the AutoImport feature on first run. See crbug.com/555550 |
| 53 const base::Feature kDisableFirstRunAutoImportWin{ | 53 const base::Feature kDisableFirstRunAutoImportWin{ |
| 54 "DisableFirstRunAutoImport", base::FEATURE_DISABLED_BY_DEFAULT}; | 54 "DisableFirstRunAutoImport", base::FEATURE_DISABLED_BY_DEFAULT}; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 // Enables or disables PIN quick unlock settings integration. | 159 // Enables or disables PIN quick unlock settings integration. |
| 160 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 160 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 161 base::FEATURE_DISABLED_BY_DEFAULT}; | 161 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 162 | 162 |
| 163 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 163 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 164 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 164 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 165 base::FEATURE_DISABLED_BY_DEFAULT}; | 165 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 166 #endif // defined(OS_CHROMEOS) | 166 #endif // defined(OS_CHROMEOS) |
| 167 | 167 |
| 168 } // namespace features | 168 } // namespace features |
| OLD | NEW |