Chromium Code Reviews| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 98 const base::Feature kGdiTextPrinting {"GdiTextPrinting", | 98 const base::Feature kGdiTextPrinting {"GdiTextPrinting", |
| 99 base::FEATURE_DISABLED_BY_DEFAULT}; | 99 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 100 #endif | 100 #endif |
| 101 | 101 |
| 102 #if defined (OS_CHROMEOS) | 102 #if defined (OS_CHROMEOS) |
| 103 // Enables or disables the Happiness Tracking System for the device. | 103 // Enables or disables the Happiness Tracking System for the device. |
| 104 const base::Feature kHappinessTrackingSystem { | 104 const base::Feature kHappinessTrackingSystem { |
| 105 "HappinessTrackingSystem", base::FEATURE_DISABLED_BY_DEFAULT}; | 105 "HappinessTrackingSystem", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 106 #endif | 106 #endif |
| 107 | 107 |
| 108 // Controls whether the "improved recovery component" is used. The improved | |
| 109 // recovery component is a redesigned Chrome component intended to restore | |
| 110 // a broken Chrome updater in more scenarios than before. | |
| 111 const base::Feature kImprovedRecoveryComponent{ | |
| 112 "ImprovedRecoveryComponent", base::FEATURE_DISABLED_BY_DEFAULT}; | |
|
sky
2017/02/08 17:12:47
Did you consider naming this "FixUpdater"? "Improv
| |
| 113 | |
| 108 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) | 114 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 109 // Enables showing the "This computer will no longer receive Google Chrome | 115 // Enables showing the "This computer will no longer receive Google Chrome |
| 110 // updates" infobar instead of the "will soon stop receiving" infobar on | 116 // updates" infobar instead of the "will soon stop receiving" infobar on |
| 111 // deprecated systems. | 117 // deprecated systems. |
| 112 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{ | 118 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{ |
| 113 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT}; | 119 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 114 #endif | 120 #endif |
| 115 | 121 |
| 116 // Enables or disables the Location Settings Dialog (LSD). The LSD is an Android | 122 // Enables or disables the Location Settings Dialog (LSD). The LSD is an Android |
| 117 // system-level geolocation permission prompt. | 123 // system-level geolocation permission prompt. |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 266 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 272 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 267 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 273 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 268 base::FEATURE_ENABLED_BY_DEFAULT}; | 274 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 269 | 275 |
| 270 // Enables or disables flash component updates on Chrome OS. | 276 // Enables or disables flash component updates on Chrome OS. |
| 271 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 277 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 272 base::FEATURE_ENABLED_BY_DEFAULT}; | 278 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 273 #endif // defined(OS_CHROMEOS) | 279 #endif // defined(OS_CHROMEOS) |
| 274 | 280 |
| 275 } // namespace features | 281 } // namespace features |
| OLD | NEW |