| OLD | NEW |
| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 const wchar_t kLanguageChewingKeyboardType[] = | 241 const wchar_t kLanguageChewingKeyboardType[] = |
| 242 L"settings.language.chewing_keyboard_type"; | 242 L"settings.language.chewing_keyboard_type"; |
| 243 const wchar_t kLanguageChewingSelKeys[] = | 243 const wchar_t kLanguageChewingSelKeys[] = |
| 244 L"settings.language.chewing_sel_keys"; | 244 L"settings.language.chewing_sel_keys"; |
| 245 | 245 |
| 246 const wchar_t kLanguageChewingHsuSelKeyType[] = | 246 const wchar_t kLanguageChewingHsuSelKeyType[] = |
| 247 L"settings.language.chewing_hsu_sel_key_type"; | 247 L"settings.language.chewing_hsu_sel_key_type"; |
| 248 | 248 |
| 249 // A string pref which determines the keyboard layout for Hangul input method. | 249 // A string pref which determines the keyboard layout for Hangul input method. |
| 250 const wchar_t kLanguageHangulKeyboard[] = L"settings.language.hangul_keyboard"; | 250 const wchar_t kLanguageHangulKeyboard[] = L"settings.language.hangul_keyboard"; |
| 251 const wchar_t kLanguageHangulHanjaKeys[] = |
| 252 L"settings.language.hangul_hanja_keys"; |
| 251 | 253 |
| 252 // A boolean prefs for ibus-pinyin Chinese input method. | 254 // A boolean prefs for ibus-pinyin Chinese input method. |
| 253 const wchar_t kLanguagePinyinCorrectPinyin[] = | 255 const wchar_t kLanguagePinyinCorrectPinyin[] = |
| 254 L"settings.language.pinyin_correct_pinyin"; | 256 L"settings.language.pinyin_correct_pinyin"; |
| 255 const wchar_t kLanguagePinyinFuzzyPinyin[] = | 257 const wchar_t kLanguagePinyinFuzzyPinyin[] = |
| 256 L"settings.language.pinyin_fuzzy_pinyin"; | 258 L"settings.language.pinyin_fuzzy_pinyin"; |
| 257 const wchar_t kLanguagePinyinShiftSelectCandidate[] = | 259 const wchar_t kLanguagePinyinShiftSelectCandidate[] = |
| 258 L"settings.language.pinyin_shift_select_candidate"; | 260 L"settings.language.pinyin_shift_select_candidate"; |
| 259 const wchar_t kLanguagePinyinMinusEqualPage[] = | 261 const wchar_t kLanguagePinyinMinusEqualPage[] = |
| 260 L"settings.language.pinyin_minus_equal_page"; | 262 L"settings.language.pinyin_minus_equal_page"; |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 // String specifying the proxy server. For a specification of the expected | 913 // String specifying the proxy server. For a specification of the expected |
| 912 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 914 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 913 const wchar_t kProxyServer[] = L"proxy.server"; | 915 const wchar_t kProxyServer[] = L"proxy.server"; |
| 914 // URL to the proxy .pac file. | 916 // URL to the proxy .pac file. |
| 915 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 917 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
| 916 // String containing proxy bypass rules. For a specification of the | 918 // String containing proxy bypass rules. For a specification of the |
| 917 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 919 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 918 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 920 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
| 919 | 921 |
| 920 } // namespace prefs | 922 } // namespace prefs |
| OLD | NEW |