| 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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 | 663 |
| 664 // A dictionary pref that specifies per-display layout/offset information. | 664 // A dictionary pref that specifies per-display layout/offset information. |
| 665 // Its key is the ID of the display and its value is a dictionary for the | 665 // Its key is the ID of the display and its value is a dictionary for the |
| 666 // layout/offset information. | 666 // layout/offset information. |
| 667 const char kSecondaryDisplays[] = "settings.display.secondary_displays"; | 667 const char kSecondaryDisplays[] = "settings.display.secondary_displays"; |
| 668 | 668 |
| 669 // A dictionary pref that specifies the state of the rotation lock, and the | 669 // A dictionary pref that specifies the state of the rotation lock, and the |
| 670 // display orientation, for the internal display. | 670 // display orientation, for the internal display. |
| 671 const char kDisplayRotationLock[] = "settings.display.rotation_lock"; | 671 const char kDisplayRotationLock[] = "settings.display.rotation_lock"; |
| 672 | 672 |
| 673 // A boolean pref that specifies if the ash palette should be enabled/disabled. |
| 674 const char kEnableAshPalette[] = "settings.enable_ash_palette"; |
| 675 |
| 673 // A boolean pref that specifies if the default note-taking app should be | 676 // A boolean pref that specifies if the default note-taking app should be |
| 674 // launched after an eject input event has been received. | 677 // launched after an eject input event has been received. |
| 675 const char kLaunchNoteAppOnEjectEvent[] = | 678 const char kLaunchNoteAppOnEjectEvent[] = |
| 676 "settings.launch_note_app_on_eject_event"; | 679 "settings.launch_note_app_on_eject_event"; |
| 677 | 680 |
| 678 // A boolean pref indicating whether user activity has been observed in the | 681 // A boolean pref indicating whether user activity has been observed in the |
| 679 // current session already. The pref is used to restore information about user | 682 // current session already. The pref is used to restore information about user |
| 680 // activity after browser crashes. | 683 // activity after browser crashes. |
| 681 const char kSessionUserActivitySeen[] = "session.user_activity_seen"; | 684 const char kSessionUserActivitySeen[] = "session.user_activity_seen"; |
| 682 | 685 |
| (...skipping 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2256 #endif // defined(ENABLE_MEDIA_ROUTER) | 2259 #endif // defined(ENABLE_MEDIA_ROUTER) |
| 2257 | 2260 |
| 2258 // The base64-encoded representation of the public key to use to validate origin | 2261 // The base64-encoded representation of the public key to use to validate origin |
| 2259 // trial token signatures. | 2262 // trial token signatures. |
| 2260 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2263 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2261 | 2264 |
| 2262 // A list of origin trial features to disable by policy. | 2265 // A list of origin trial features to disable by policy. |
| 2263 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2266 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2264 | 2267 |
| 2265 } // namespace prefs | 2268 } // namespace prefs |
| OLD | NEW |