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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 L"settings.language.mozc_use_symbol_conversion"; | 330 L"settings.language.mozc_use_symbol_conversion"; |
331 const wchar_t kLanguageMozcUseNumberConversion[] = | 331 const wchar_t kLanguageMozcUseNumberConversion[] = |
332 L"settings.language.mozc_use_number_conversion"; | 332 L"settings.language.mozc_use_number_conversion"; |
333 const wchar_t kLanguageMozcUseHistorySuggest[] = | 333 const wchar_t kLanguageMozcUseHistorySuggest[] = |
334 L"settings.language.mozc_use_history_suggest"; | 334 L"settings.language.mozc_use_history_suggest"; |
335 const wchar_t kLanguageMozcUseDictionarySuggest[] = | 335 const wchar_t kLanguageMozcUseDictionarySuggest[] = |
336 L"settings.language.mozc_use_dictionary_suggest"; | 336 L"settings.language.mozc_use_dictionary_suggest"; |
337 const wchar_t kLanguageMozcSuggestionsSize[] = | 337 const wchar_t kLanguageMozcSuggestionsSize[] = |
338 L"settings.language.mozc_suggestions_size"; | 338 L"settings.language.mozc_suggestions_size"; |
339 | 339 |
| 340 // A integer pref which determines how we remap the XKB modifier keys. |
| 341 // 0: Do not remap. |
| 342 // 1: Swap Left Control and Left Alt. |
| 343 // 2: Swap Left Win (i.e. Search) and Left Control. |
| 344 // TODO(yusukes): Delete this pref when the final configration dialog (using |
| 345 // DOM UI) is implemented. See crosbug.com/2636. |
| 346 const wchar_t kLanguageXkbModifierRemap[] = |
| 347 L"settings.language.xkb_modifier_remap"; |
| 348 |
340 // A boolean pref which determines whether accessibility is enabled. | 349 // A boolean pref which determines whether accessibility is enabled. |
341 const wchar_t kAccessibilityEnabled[] = L"settings.accessibility"; | 350 const wchar_t kAccessibilityEnabled[] = L"settings.accessibility"; |
342 | 351 |
343 // A boolean pref which turns on Advanced Filesystem | 352 // A boolean pref which turns on Advanced Filesystem |
344 // (USB support, SD card, etc). | 353 // (USB support, SD card, etc). |
345 const wchar_t kLabsAdvancedFilesystemEnabled[] = | 354 const wchar_t kLabsAdvancedFilesystemEnabled[] = |
346 L"settings.labs.advanced_filesystem"; | 355 L"settings.labs.advanced_filesystem"; |
347 | 356 |
348 // A boolean pref which turns on the mediaplayer. | 357 // A boolean pref which turns on the mediaplayer. |
349 const wchar_t kLabsMediaplayerEnabled[] = L"settings.labs.mediaplayer"; | 358 const wchar_t kLabsMediaplayerEnabled[] = L"settings.labs.mediaplayer"; |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 // String specifying the proxy server. For a specification of the expected | 945 // String specifying the proxy server. For a specification of the expected |
937 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 946 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
938 const wchar_t kProxyServer[] = L"proxy.server"; | 947 const wchar_t kProxyServer[] = L"proxy.server"; |
939 // URL to the proxy .pac file. | 948 // URL to the proxy .pac file. |
940 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 949 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
941 // String containing proxy bypass rules. For a specification of the | 950 // String containing proxy bypass rules. For a specification of the |
942 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 951 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
943 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 952 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
944 | 953 |
945 } // namespace prefs | 954 } // namespace prefs |
OLD | NEW |