| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 const base::Feature kGdiTextPrinting {"GdiTextPrinting", | 115 const base::Feature kGdiTextPrinting {"GdiTextPrinting", |
| 116 base::FEATURE_DISABLED_BY_DEFAULT}; | 116 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 117 #endif | 117 #endif |
| 118 | 118 |
| 119 #if defined (OS_CHROMEOS) | 119 #if defined (OS_CHROMEOS) |
| 120 // Enables or disables the Happiness Tracking System for the device. | 120 // Enables or disables the Happiness Tracking System for the device. |
| 121 const base::Feature kHappinessTrackingSystem { | 121 const base::Feature kHappinessTrackingSystem { |
| 122 "HappinessTrackingSystem", base::FEATURE_DISABLED_BY_DEFAULT}; | 122 "HappinessTrackingSystem", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 123 #endif | 123 #endif |
| 124 | 124 |
| 125 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", |
| 126 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 127 |
| 125 // Controls whether the "improved recovery component" is used. The improved | 128 // Controls whether the "improved recovery component" is used. The improved |
| 126 // recovery component is a redesigned Chrome component intended to restore | 129 // recovery component is a redesigned Chrome component intended to restore |
| 127 // a broken Chrome updater in more scenarios than before. | 130 // a broken Chrome updater in more scenarios than before. |
| 128 const base::Feature kImprovedRecoveryComponent{ | 131 const base::Feature kImprovedRecoveryComponent{ |
| 129 "ImprovedRecoveryComponent", base::FEATURE_DISABLED_BY_DEFAULT}; | 132 "ImprovedRecoveryComponent", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 130 | 133 |
| 131 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) | 134 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 132 // Enables showing the "This computer will no longer receive Google Chrome | 135 // Enables showing the "This computer will no longer receive Google Chrome |
| 133 // updates" infobar instead of the "will soon stop receiving" infobar on | 136 // updates" infobar instead of the "will soon stop receiving" infobar on |
| 134 // deprecated systems. | 137 // deprecated systems. |
| (...skipping 161 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. | 299 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 297 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 300 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 298 base::FEATURE_ENABLED_BY_DEFAULT}; | 301 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 299 | 302 |
| 300 // Enables or disables flash component updates on Chrome OS. | 303 // Enables or disables flash component updates on Chrome OS. |
| 301 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 304 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 302 base::FEATURE_ENABLED_BY_DEFAULT}; | 305 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 303 #endif // defined(OS_CHROMEOS) | 306 #endif // defined(OS_CHROMEOS) |
| 304 | 307 |
| 305 } // namespace features | 308 } // namespace features |
| OLD | NEW |