| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // deprecated systems. | 65 // deprecated systems. |
| 66 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{ | 66 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{ |
| 67 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT}; | 67 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 68 #endif | 68 #endif |
| 69 | 69 |
| 70 #if defined(ENABLE_EXTENSIONS) | 70 #if defined(ENABLE_EXTENSIONS) |
| 71 // Enabled or disabled the Material Design version of chrome://extensions. | 71 // Enabled or disabled the Material Design version of chrome://extensions. |
| 72 const base::Feature kMaterialDesignExtensions{ | 72 const base::Feature kMaterialDesignExtensions{ |
| 73 "MaterialDesignExtensions", base::FEATURE_DISABLED_BY_DEFAULT}; | 73 "MaterialDesignExtensions", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 74 #endif | 74 #endif |
| 75 // Enables YouTube Flash videos to be overriden. |
| 76 const base::Feature kOverrideYouTubeFlashEmbed{ |
| 77 "override-youtube-flash-emed", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 75 | 78 |
| 76 // Enables or disables the Material Design version of chrome://history. | 79 // Enables or disables the Material Design version of chrome://history. |
| 77 const base::Feature kMaterialDesignHistory{ | 80 const base::Feature kMaterialDesignHistory{ |
| 78 "MaterialDesignHistory", base::FEATURE_ENABLED_BY_DEFAULT}; | 81 "MaterialDesignHistory", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 79 | 82 |
| 80 // Enables or disables the Material Design version of chrome://settings. | 83 // Enables or disables the Material Design version of chrome://settings. |
| 81 // Also affects chrome://help. | 84 // Also affects chrome://help. |
| 82 const base::Feature kMaterialDesignSettings{ | 85 const base::Feature kMaterialDesignSettings{ |
| 83 "MaterialDesignSettings", base::FEATURE_DISABLED_BY_DEFAULT}; | 86 "MaterialDesignSettings", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 84 | 87 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 114 // Enables or disables the opt-in IME menu in the language settings page. | 117 // Enables or disables the opt-in IME menu in the language settings page. |
| 115 const base::Feature kOptInImeMenu{"OptInImeMenu", | 118 const base::Feature kOptInImeMenu{"OptInImeMenu", |
| 116 base::FEATURE_DISABLED_BY_DEFAULT}; | 119 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 117 | 120 |
| 118 // Enables or disables PIN quick unlock settings integration. | 121 // Enables or disables PIN quick unlock settings integration. |
| 119 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 122 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 120 base::FEATURE_DISABLED_BY_DEFAULT}; | 123 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 121 #endif // defined(OS_CHROMEOS) | 124 #endif // defined(OS_CHROMEOS) |
| 122 | 125 |
| 123 } // namespace features | 126 } // namespace features |
| OLD | NEW |