OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 const char kLanguageChewingKeyboardType[] = | 371 const char kLanguageChewingKeyboardType[] = |
372 "settings.language.chewing_keyboard_type"; | 372 "settings.language.chewing_keyboard_type"; |
373 const char kLanguageChewingSelKeys[] = | 373 const char kLanguageChewingSelKeys[] = |
374 "settings.language.chewing_sel_keys"; | 374 "settings.language.chewing_sel_keys"; |
375 | 375 |
376 const char kLanguageChewingHsuSelKeyType[] = | 376 const char kLanguageChewingHsuSelKeyType[] = |
377 "settings.language.chewing_hsu_sel_key_type"; | 377 "settings.language.chewing_hsu_sel_key_type"; |
378 | 378 |
379 // A string pref which determines the keyboard layout for Hangul input method. | 379 // A string pref which determines the keyboard layout for Hangul input method. |
380 const char kLanguageHangulKeyboard[] = "settings.language.hangul_keyboard"; | 380 const char kLanguageHangulKeyboard[] = "settings.language.hangul_keyboard"; |
381 const char kLanguageHangulHanjaKeys[] = "settings.language.hangul_hanja_keys"; | |
382 const char kLanguageHangulHanjaBindingKeys[] = | 381 const char kLanguageHangulHanjaBindingKeys[] = |
383 "settings.language.hangul_hanja_binding_keys"; | 382 "settings.language.hangul_hanja_binding_keys"; |
384 | 383 |
385 // A boolean prefs for ibus-pinyin Chinese input method. | 384 // A boolean prefs for ibus-pinyin Chinese input method. |
386 const char kLanguagePinyinCorrectPinyin[] = | 385 const char kLanguagePinyinCorrectPinyin[] = |
387 "settings.language.pinyin_correct_pinyin"; | 386 "settings.language.pinyin_correct_pinyin"; |
388 const char kLanguagePinyinFuzzyPinyin[] = | 387 const char kLanguagePinyinFuzzyPinyin[] = |
389 "settings.language.pinyin_fuzzy_pinyin"; | 388 "settings.language.pinyin_fuzzy_pinyin"; |
390 const char kLanguagePinyinShiftSelectCandidate[] = | 389 const char kLanguagePinyinShiftSelectCandidate[] = |
391 "settings.language.pinyin_shift_select_candidate"; | 390 "settings.language.pinyin_shift_select_candidate"; |
(...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1453 // Whether user-specified handlers for protocols and content types can be | 1452 // Whether user-specified handlers for protocols and content types can be |
1454 // specified. | 1453 // specified. |
1455 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1454 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1456 | 1455 |
1457 // Integers that specify the policy refresh rate for device- and user-policy in | 1456 // Integers that specify the policy refresh rate for device- and user-policy in |
1458 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1457 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1459 // by the cloud policy subsystem. | 1458 // by the cloud policy subsystem. |
1460 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1459 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1461 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1460 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1462 } // namespace prefs | 1461 } // namespace prefs |
OLD | NEW |