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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 | 667 |
668 // A dictionary pref that specifies per-display layout/offset information. | 668 // A dictionary pref that specifies per-display layout/offset information. |
669 // Its key is the ID of the display and its value is a dictionary for the | 669 // Its key is the ID of the display and its value is a dictionary for the |
670 // layout/offset information. | 670 // layout/offset information. |
671 const char kSecondaryDisplays[] = "settings.display.secondary_displays"; | 671 const char kSecondaryDisplays[] = "settings.display.secondary_displays"; |
672 | 672 |
673 // A dictionary pref that specifies the state of the rotation lock, and the | 673 // A dictionary pref that specifies the state of the rotation lock, and the |
674 // display orientation, for the internal display. | 674 // display orientation, for the internal display. |
675 const char kDisplayRotationLock[] = "settings.display.rotation_lock"; | 675 const char kDisplayRotationLock[] = "settings.display.rotation_lock"; |
676 | 676 |
| 677 // A boolean pref that specifies if the stylus tools should be enabled/disabled. |
| 678 const char kEnableStylusTools[] = "settings.enable_stylus_tools"; |
| 679 |
677 // A boolean pref that specifies if the ash palette should be launched after an | 680 // A boolean pref that specifies if the ash palette should be launched after an |
678 // eject input event has been received. | 681 // eject input event has been received. |
679 const char kLaunchPaletteOnEjectEvent[] = | 682 const char kLaunchPaletteOnEjectEvent[] = |
680 "settings.launch_palette_on_eject_event"; | 683 "settings.launch_palette_on_eject_event"; |
681 | 684 |
682 // A boolean pref indicating whether user activity has been observed in the | 685 // A boolean pref indicating whether user activity has been observed in the |
683 // current session already. The pref is used to restore information about user | 686 // current session already. The pref is used to restore information about user |
684 // activity after browser crashes. | 687 // activity after browser crashes. |
685 const char kSessionUserActivitySeen[] = "session.user_activity_seen"; | 688 const char kSessionUserActivitySeen[] = "session.user_activity_seen"; |
686 | 689 |
(...skipping 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2259 | 2262 |
2260 // A list of origin trial features to disable by policy. | 2263 // A list of origin trial features to disable by policy. |
2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2262 | 2265 |
2263 // Policy that indicates the state of updates for the binary components. | 2266 // Policy that indicates the state of updates for the binary components. |
2264 const char kComponentUpdatesEnabled[] = | 2267 const char kComponentUpdatesEnabled[] = |
2265 "component_updates.component_updates_enabled"; | 2268 "component_updates.component_updates_enabled"; |
2266 | 2269 |
2267 } // namespace prefs | 2270 } // namespace prefs |
OLD | NEW |