| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 L"settings.language.pinyin_double_pinyin_schema"; | 296 L"settings.language.pinyin_double_pinyin_schema"; |
| 297 const wchar_t kLanguagePinyinLookupTablePageSize[] = | 297 const wchar_t kLanguagePinyinLookupTablePageSize[] = |
| 298 L"settings.language.pinyin_lookup_table_page_size"; | 298 L"settings.language.pinyin_lookup_table_page_size"; |
| 299 | 299 |
| 300 // A string prefs for ibus-mozc Japanese input method. | 300 // A string prefs for ibus-mozc Japanese input method. |
| 301 // ibus-mozc converts the string values to protobuf enum values defined in | 301 // ibus-mozc converts the string values to protobuf enum values defined in |
| 302 // third_party/ibus-mozc/files/src/session/config.proto. | 302 // third_party/ibus-mozc/files/src/session/config.proto. |
| 303 const wchar_t kLanguageMozcPreeditMethod[] = | 303 const wchar_t kLanguageMozcPreeditMethod[] = |
| 304 L"settings.language.mozc_preedit_method"; | 304 L"settings.language.mozc_preedit_method"; |
| 305 const wchar_t kLanguageMozcSessionKeymap[] = | 305 const wchar_t kLanguageMozcSessionKeymap[] = |
| 306 L"settings.language.mozc_sessoin_keymap"; | 306 L"settings.language.mozc_session_keymap"; |
| 307 const wchar_t kLanguageMozcPunctuationMethod[] = | 307 const wchar_t kLanguageMozcPunctuationMethod[] = |
| 308 L"settings.language.mozc_punctuation_method"; | 308 L"settings.language.mozc_punctuation_method"; |
| 309 const wchar_t kLanguageMozcSymbolMethod[] = | 309 const wchar_t kLanguageMozcSymbolMethod[] = |
| 310 L"settings.language.mozc_symbol_method"; | 310 L"settings.language.mozc_symbol_method"; |
| 311 const wchar_t kLanguageMozcSpaceCharacterForm[] = | 311 const wchar_t kLanguageMozcSpaceCharacterForm[] = |
| 312 L"settings.language.mozc_space_character_form"; | 312 L"settings.language.mozc_space_character_form"; |
| 313 const wchar_t kLanguageMozcHistoryLearningLevel[] = | 313 const wchar_t kLanguageMozcHistoryLearningLevel[] = |
| 314 L"settings.language.mozc_history_learning_level"; | 314 L"settings.language.mozc_history_learning_level"; |
| 315 const wchar_t kLanguageMozcSelectionShortcut[] = | 315 const wchar_t kLanguageMozcSelectionShortcut[] = |
| 316 L"settings.language.mozc_selection_shortcut"; | 316 L"settings.language.mozc_selection_shortcut"; |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 944 // String specifying the proxy server. For a specification of the expected | 944 // String specifying the proxy server. For a specification of the expected |
| 945 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 945 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 946 const wchar_t kProxyServer[] = L"proxy.server"; | 946 const wchar_t kProxyServer[] = L"proxy.server"; |
| 947 // URL to the proxy .pac file. | 947 // URL to the proxy .pac file. |
| 948 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 948 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
| 949 // String containing proxy bypass rules. For a specification of the | 949 // String containing proxy bypass rules. For a specification of the |
| 950 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 950 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 951 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 951 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
| 952 | 952 |
| 953 } // namespace prefs | 953 } // namespace prefs |
| OLD | NEW |