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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 "settings.language.xkb_auto_repeat_enabled_r2"; | 473 "settings.language.xkb_auto_repeat_enabled_r2"; |
474 // A integer pref which determines key repeat delay (in ms). | 474 // A integer pref which determines key repeat delay (in ms). |
475 const char kLanguageXkbAutoRepeatDelay[] = | 475 const char kLanguageXkbAutoRepeatDelay[] = |
476 "settings.language.xkb_auto_repeat_delay_r2"; | 476 "settings.language.xkb_auto_repeat_delay_r2"; |
477 // A integer pref which determines key repeat interval (in ms). | 477 // A integer pref which determines key repeat interval (in ms). |
478 const char kLanguageXkbAutoRepeatInterval[] = | 478 const char kLanguageXkbAutoRepeatInterval[] = |
479 "settings.language.xkb_auto_repeat_interval_r2"; | 479 "settings.language.xkb_auto_repeat_interval_r2"; |
480 // "_r2" suffixes are added to the three prefs above when we change the | 480 // "_r2" suffixes are added to the three prefs above when we change the |
481 // preferences not user-configurable, not to sync them with cloud. | 481 // preferences not user-configurable, not to sync them with cloud. |
482 | 482 |
| 483 // A dictionary pref which determines a preferred virtual keyboard per layout. |
| 484 // e.g. { "us(dvorak)": "http://asdfg..yuiop/" } |
| 485 const char kLanguagePreferredVirtualKeyboard[] = |
| 486 "settings.language.preferred_virtual_keyboard"; |
| 487 |
483 // A boolean pref which determines whether accessibility is enabled. | 488 // A boolean pref which determines whether accessibility is enabled. |
484 const char kAccessibilityEnabled[] = "settings.accessibility"; | 489 const char kAccessibilityEnabled[] = "settings.accessibility"; |
485 | 490 |
486 // A boolean pref which turns on Advanced Filesystem | 491 // A boolean pref which turns on Advanced Filesystem |
487 // (USB support, SD card, etc). | 492 // (USB support, SD card, etc). |
488 const char kLabsAdvancedFilesystemEnabled[] = | 493 const char kLabsAdvancedFilesystemEnabled[] = |
489 "settings.labs.advanced_filesystem"; | 494 "settings.labs.advanced_filesystem"; |
490 | 495 |
491 // A boolean pref which turns on the mediaplayer. | 496 // A boolean pref which turns on the mediaplayer. |
492 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; | 497 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; |
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1452 // Whether user-specified handlers for protocols and content types can be | 1457 // Whether user-specified handlers for protocols and content types can be |
1453 // specified. | 1458 // specified. |
1454 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1459 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1455 | 1460 |
1456 // Integers that specify the policy refresh rate for device- and user-policy in | 1461 // Integers that specify the policy refresh rate for device- and user-policy in |
1457 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1462 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1458 // by the cloud policy subsystem. | 1463 // by the cloud policy subsystem. |
1459 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1464 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1460 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1465 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1461 } // namespace prefs | 1466 } // namespace prefs |
OLD | NEW |