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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 "settings.language.xkb_auto_repeat_enabled_r2"; | 467 "settings.language.xkb_auto_repeat_enabled_r2"; |
468 // A integer pref which determines key repeat delay (in ms). | 468 // A integer pref which determines key repeat delay (in ms). |
469 const char kLanguageXkbAutoRepeatDelay[] = | 469 const char kLanguageXkbAutoRepeatDelay[] = |
470 "settings.language.xkb_auto_repeat_delay_r2"; | 470 "settings.language.xkb_auto_repeat_delay_r2"; |
471 // A integer pref which determines key repeat interval (in ms). | 471 // A integer pref which determines key repeat interval (in ms). |
472 const char kLanguageXkbAutoRepeatInterval[] = | 472 const char kLanguageXkbAutoRepeatInterval[] = |
473 "settings.language.xkb_auto_repeat_interval_r2"; | 473 "settings.language.xkb_auto_repeat_interval_r2"; |
474 // "_r2" suffixes are added to the three prefs above when we change the | 474 // "_r2" suffixes are added to the three prefs above when we change the |
475 // preferences not user-configurable, not to sync them with cloud. | 475 // preferences not user-configurable, not to sync them with cloud. |
476 | 476 |
| 477 // A dictionary pref which determines a preferred virtual keyboard per layout. |
| 478 // e.g. { "xkb:us::eng": "http://asdfg..yuiop/" } |
| 479 const char kLanguagePreferredVirtualKeyboard[] = |
| 480 "settings.language.preferred_virtual_keyboard"; |
| 481 |
477 // A boolean pref which determines whether accessibility is enabled. | 482 // A boolean pref which determines whether accessibility is enabled. |
478 const char kAccessibilityEnabled[] = "settings.accessibility"; | 483 const char kAccessibilityEnabled[] = "settings.accessibility"; |
479 | 484 |
480 // A boolean pref which turns on Advanced Filesystem | 485 // A boolean pref which turns on Advanced Filesystem |
481 // (USB support, SD card, etc). | 486 // (USB support, SD card, etc). |
482 const char kLabsAdvancedFilesystemEnabled[] = | 487 const char kLabsAdvancedFilesystemEnabled[] = |
483 "settings.labs.advanced_filesystem"; | 488 "settings.labs.advanced_filesystem"; |
484 | 489 |
485 // A boolean pref which turns on the mediaplayer. | 490 // A boolean pref which turns on the mediaplayer. |
486 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; | 491 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; |
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1436 // Whether user-specified handlers for protocols and content types can be | 1441 // Whether user-specified handlers for protocols and content types can be |
1437 // specified. | 1442 // specified. |
1438 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1443 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1439 | 1444 |
1440 // Integers that specify the policy refresh rate for device- and user-policy in | 1445 // Integers that specify the policy refresh rate for device- and user-policy in |
1441 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1446 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1442 // by the cloud policy subsystem. | 1447 // by the cloud policy subsystem. |
1443 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1448 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1444 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1449 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1445 } // namespace prefs | 1450 } // namespace prefs |
OLD | NEW |