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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
100 #endif | 100 #endif |
101 | 101 |
102 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) | 102 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) |
103 // Enables showing the "This computer will no longer receive Google Chrome | 103 // Enables showing the "This computer will no longer receive Google Chrome |
104 // updates" infobar instead of the "will soon stop receiving" infobar on | 104 // updates" infobar instead of the "will soon stop receiving" infobar on |
105 // deprecated systems. | 105 // deprecated systems. |
106 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{ | 106 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{ |
107 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT}; | 107 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT}; |
108 #endif | 108 #endif |
109 | 109 |
110 // Enables or disables the Location Settings Dialog. | |
raymes
2017/01/18 04:27:01
Maybe add a note that the LSD is the Android syste
kcarattini
2017/01/18 04:40:08
Done.
| |
111 const base::Feature kLsdPermissionPrompt{"LsdPermissionPrompt", | |
112 base::FEATURE_DISABLED_BY_DEFAULT}; | |
113 | |
110 // Enables or disables the Material Design version of chrome://bookmarks. | 114 // Enables or disables the Material Design version of chrome://bookmarks. |
111 const base::Feature kMaterialDesignBookmarks{"MaterialDesignBookmarks", | 115 const base::Feature kMaterialDesignBookmarks{"MaterialDesignBookmarks", |
112 base::FEATURE_DISABLED_BY_DEFAULT}; | 116 base::FEATURE_DISABLED_BY_DEFAULT}; |
113 | 117 |
114 #if BUILDFLAG(ENABLE_EXTENSIONS) | 118 #if BUILDFLAG(ENABLE_EXTENSIONS) |
115 // Enabled or disabled the Material Design version of chrome://extensions. | 119 // Enabled or disabled the Material Design version of chrome://extensions. |
116 const base::Feature kMaterialDesignExtensions{ | 120 const base::Feature kMaterialDesignExtensions{ |
117 "MaterialDesignExtensions", base::FEATURE_DISABLED_BY_DEFAULT}; | 121 "MaterialDesignExtensions", base::FEATURE_DISABLED_BY_DEFAULT}; |
118 #endif | 122 #endif |
119 | 123 |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
234 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 238 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
235 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 239 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
236 base::FEATURE_ENABLED_BY_DEFAULT}; | 240 base::FEATURE_ENABLED_BY_DEFAULT}; |
237 | 241 |
238 // Enables or disables flash component updates on Chrome OS. | 242 // Enables or disables flash component updates on Chrome OS. |
239 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 243 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
240 base::FEATURE_DISABLED_BY_DEFAULT}; | 244 base::FEATURE_DISABLED_BY_DEFAULT}; |
241 #endif // defined(OS_CHROMEOS) | 245 #endif // defined(OS_CHROMEOS) |
242 | 246 |
243 } // namespace features | 247 } // namespace features |
OLD | NEW |