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

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

Issue 2457001: Add Chewing integer preferences (Closed)
Patch Set: Code Review Created 10 years, 6 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/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 L"settings.language.chewing_esc_clean_all_buf"; 219 L"settings.language.chewing_esc_clean_all_buf";
220 const wchar_t kLanguageChewingForceLowercaseEnglish[] = 220 const wchar_t kLanguageChewingForceLowercaseEnglish[] =
221 L"settings.language.chewing_force_lowercase_english"; 221 L"settings.language.chewing_force_lowercase_english";
222 const wchar_t kLanguageChewingPlainZhuyin[] = 222 const wchar_t kLanguageChewingPlainZhuyin[] =
223 L"settings.language.chewing_plain_zhuyin"; 223 L"settings.language.chewing_plain_zhuyin";
224 const wchar_t kLanguageChewingPhraseChoiceRearward[] = 224 const wchar_t kLanguageChewingPhraseChoiceRearward[] =
225 L"settings.language.chewing_phrase_choice_rearward"; 225 L"settings.language.chewing_phrase_choice_rearward";
226 const wchar_t kLanguageChewingSpaceAsSelection[] = 226 const wchar_t kLanguageChewingSpaceAsSelection[] =
227 L"settings.language.chewing_space_as_selection"; 227 L"settings.language.chewing_space_as_selection";
228 228
229 // Integer prefs for ibus-chewing Chinese input method.
230 const wchar_t kLanguageChewingMaxChiSymbolLen[] =
231 L"settings.language.chewing_max_chi_symbol_len";
232 const wchar_t kLanguageChewingCandPerPage[] =
233 L"settings.language.chewing_cand_per_page";
234
229 // String prefs for ibus-chewing Chinese input method. 235 // String prefs for ibus-chewing Chinese input method.
230 const wchar_t kLanguageChewingKeyboardType[] = 236 const wchar_t kLanguageChewingKeyboardType[] =
231 L"settings.language.chewing_keyboard_type"; 237 L"settings.language.chewing_keyboard_type";
232 const wchar_t kLanguageChewingSelKeys[] = 238 const wchar_t kLanguageChewingSelKeys[] =
233 L"settings.language.chewing_sel_keys"; 239 L"settings.language.chewing_sel_keys";
234 240
235 // A string pref which determines the keyboard layout for Hangul input method. 241 // A string pref which determines the keyboard layout for Hangul input method.
236 const wchar_t kLanguageHangulKeyboard[] = L"settings.language.hangul_keyboard"; 242 const wchar_t kLanguageHangulKeyboard[] = L"settings.language.hangul_keyboard";
237 243
238 // A boolean prefs for ibus-pinyin Chinese input method. 244 // A boolean prefs for ibus-pinyin Chinese input method.
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; 853 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id";
848 // The GAIA auth token for Cloud Print 854 // The GAIA auth token for Cloud Print
849 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; 855 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token";
850 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server 856 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server
851 // This should eventually go away because the above token should work for both. 857 // This should eventually go away because the above token should work for both.
852 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; 858 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token";
853 // The email address of the account used to authenticate with the Cloud Print 859 // The email address of the account used to authenticate with the Cloud Print
854 // server. 860 // server.
855 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; 861 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email";
856 } // namespace prefs 862 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698