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 namespace features { | 7 namespace features { |
| 8 | 8 |
| 9 // All features in alphabetical order. | 9 // All features in alphabetical order. |
| 10 | 10 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 158 | 158 |
| 159 // Enables or disables PIN quick unlock settings integration. | 159 // Enables or disables PIN quick unlock settings integration. |
| 160 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 160 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 161 base::FEATURE_DISABLED_BY_DEFAULT}; | 161 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 162 | 162 |
| 163 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 163 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 164 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 164 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 165 base::FEATURE_DISABLED_BY_DEFAULT}; | 165 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 166 #endif // defined(OS_CHROMEOS) | 166 #endif // defined(OS_CHROMEOS) |
| 167 | 167 |
| 168 #if defined(OS_ANDROID) | |
| 169 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut | |
| 170 // URL which opens Chrome in fullscreen. | |
| 171 const base::Feature kWebApk{"WebAPK", base::FEATURE_DISABLED_BY_DEFAULT}; | |
|
dominickn
2016/10/24 00:32:37
Nit: call this "WebApks" for consistency in this f
| |
| 172 #endif | |
| 173 | |
| 168 } // namespace features | 174 } // namespace features |
| OLD | NEW |