| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 const char kLanguageRemapSearchKeyTo[] = | 540 const char kLanguageRemapSearchKeyTo[] = |
| 541 // Note: we no longer use XKB for remapping these keys, but we can't change | 541 // Note: we no longer use XKB for remapping these keys, but we can't change |
| 542 // the pref names since the names are already synced with the cloud. | 542 // the pref names since the names are already synced with the cloud. |
| 543 "settings.language.xkb_remap_search_key_to"; | 543 "settings.language.xkb_remap_search_key_to"; |
| 544 const char kLanguageRemapControlKeyTo[] = | 544 const char kLanguageRemapControlKeyTo[] = |
| 545 "settings.language.xkb_remap_control_key_to"; | 545 "settings.language.xkb_remap_control_key_to"; |
| 546 const char kLanguageRemapAltKeyTo[] = | 546 const char kLanguageRemapAltKeyTo[] = |
| 547 "settings.language.xkb_remap_alt_key_to"; | 547 "settings.language.xkb_remap_alt_key_to"; |
| 548 const char kLanguageRemapCapsLockKeyTo[] = | 548 const char kLanguageRemapCapsLockKeyTo[] = |
| 549 "settings.language.remap_caps_lock_key_to"; | 549 "settings.language.remap_caps_lock_key_to"; |
| 550 const char kLanguageRemapEscapeKeyTo[] = |
| 551 "settings.language.remap_escape_key_to"; |
| 552 const char kLanguageRemapBackspaceKeyTo[] = |
| 553 "settings.language.remap_backspace_key_to"; |
| 550 const char kLanguageRemapDiamondKeyTo[] = | 554 const char kLanguageRemapDiamondKeyTo[] = |
| 551 "settings.language.remap_diamond_key_to"; | 555 "settings.language.remap_diamond_key_to"; |
| 552 | 556 |
| 553 // A boolean pref that causes top-row keys to be interpreted as function keys | 557 // A boolean pref that causes top-row keys to be interpreted as function keys |
| 554 // instead of as media keys. | 558 // instead of as media keys. |
| 555 const char kLanguageSendFunctionKeys[] = | 559 const char kLanguageSendFunctionKeys[] = |
| 556 "settings.language.send_function_keys"; | 560 "settings.language.send_function_keys"; |
| 557 | 561 |
| 558 // A boolean pref which determines whether key repeat is enabled. | 562 // A boolean pref which determines whether key repeat is enabled. |
| 559 const char kLanguageXkbAutoRepeatEnabled[] = | 563 const char kLanguageXkbAutoRepeatEnabled[] = |
| (...skipping 1694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2254 #endif | 2258 #endif |
| 2255 | 2259 |
| 2256 // The base64-encoded representation of the public key to use to validate origin | 2260 // The base64-encoded representation of the public key to use to validate origin |
| 2257 // trial token signatures. | 2261 // trial token signatures. |
| 2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2262 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2259 | 2263 |
| 2260 // A list of origin trial features to disable by policy. | 2264 // A list of origin trial features to disable by policy. |
| 2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2265 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2262 | 2266 |
| 2263 } // namespace prefs | 2267 } // namespace prefs |
| OLD | NEW |