Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: chrome/common/chrome_features.cc

Issue 2661113003: Skeleton mechanical impl. for the RecoveryImprovedComponent. (Closed)
Patch Set: wip Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/chrome_features.h ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/chrome_features.h ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698