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

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

Issue 2323823004: Add action for each button on opt-in IME menu. (Closed)
Patch Set: Addressed comments. Created 4 years, 3 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
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 namespace features { 7 namespace features {
8 8
9 // All features in alphabetical order. 9 // All features in alphabetical order.
10 10
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 #if defined(OS_CHROMEOS) 139 #if defined(OS_CHROMEOS)
140 // Enables or disables the opt-in IME menu in the language settings page. 140 // Enables or disables the opt-in IME menu in the language settings page.
141 const base::Feature kOptInImeMenu{"OptInImeMenu", 141 const base::Feature kOptInImeMenu{"OptInImeMenu",
142 base::FEATURE_ENABLED_BY_DEFAULT}; 142 base::FEATURE_ENABLED_BY_DEFAULT};
143 143
144 // Enables or disables PIN quick unlock settings integration. 144 // Enables or disables PIN quick unlock settings integration.
145 const base::Feature kQuickUnlockPin{"QuickUnlockPin", 145 const base::Feature kQuickUnlockPin{"QuickUnlockPin",
146 base::FEATURE_DISABLED_BY_DEFAULT}; 146 base::FEATURE_DISABLED_BY_DEFAULT};
147 147
148 // Enables or disables PIN quick unlock settings integration. 148 // Enables or disables emoji, handwriting and voice input on opt-in IME menu.
149 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", 149 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput",
150 base::FEATURE_DISABLED_BY_DEFAULT}; 150 base::FEATURE_DISABLED_BY_DEFAULT};
151 #endif // defined(OS_CHROMEOS) 151 #endif // defined(OS_CHROMEOS)
152 152
153 } // namespace features 153 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698