| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 | 788 |
| 789 // A string pref that contains version where "What's new" promo was shown. | 789 // A string pref that contains version where "What's new" promo was shown. |
| 790 const char kChromeOSReleaseNotesVersion[] = "settings.release_notes.version"; | 790 const char kChromeOSReleaseNotesVersion[] = "settings.release_notes.version"; |
| 791 | 791 |
| 792 // A boolean pref that uses shared proxies. | 792 // A boolean pref that uses shared proxies. |
| 793 const char kUseSharedProxies[] = "settings.use_shared_proxies"; | 793 const char kUseSharedProxies[] = "settings.use_shared_proxies"; |
| 794 | 794 |
| 795 // A boolean pref that enables the (private) pepper GetID() call. | 795 // A boolean pref that enables the (private) pepper GetID() call. |
| 796 const char kEnableCrosDRM[] = "settings.privacy.drm_enabled"; | 796 const char kEnableCrosDRM[] = "settings.privacy.drm_enabled"; |
| 797 | 797 |
| 798 // A dictionary pref that specifies per-display overscan data. Its key is the | 798 // A dictionary pref that stores per display preferences. |
| 799 // display's ID and its value is a dictionary of canceling overscan pixels for | 799 const char kDisplayProperties[] = "settings.display.properties"; |
| 800 // 'top', 'right', 'bottom', 'left'. | |
| 801 const char kDisplayOverscans[] = "settings.display.overscans"; | |
| 802 | 800 |
| 803 // A 64bit integer pref that specifies the name of the primary display device. | 801 // A 64bit integer pref that specifies the name of the primary display device. |
| 804 const char kPrimaryDisplayID[] = "settings.display.primary_id"; | 802 const char kPrimaryDisplayID[] = "settings.display.primary_id"; |
| 805 | 803 |
| 806 // An enumeration that specifies the layout of the secondary display. | 804 // An enumeration that specifies the layout of the secondary display. |
| 807 // 0 - The secondary display is at the top of the primary display. | 805 // 0 - The secondary display is at the top of the primary display. |
| 808 // 1 - The secondary display is at the right of the primary display. | 806 // 1 - The secondary display is at the right of the primary display. |
| 809 // 2 - The secondary display is at the bottom of the primary display. | 807 // 2 - The secondary display is at the bottom of the primary display. |
| 810 // 3 - The secondary display is at the left of the primary display. | 808 // 3 - The secondary display is at the left of the primary display. |
| 811 // TODO(mukai,oshima): update the format of the multi-display settings. | 809 // TODO(mukai,oshima): update the format of the multi-display settings. |
| (...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2364 const char kRLZBrand[] = "rlz.brand"; | 2362 const char kRLZBrand[] = "rlz.brand"; |
| 2365 // Whether RLZ pings are disabled. | 2363 // Whether RLZ pings are disabled. |
| 2366 const char kRLZDisabled[] = "rlz.disabled"; | 2364 const char kRLZDisabled[] = "rlz.disabled"; |
| 2367 #endif | 2365 #endif |
| 2368 | 2366 |
| 2369 // The directory in user data dir that contains the profile to be used with the | 2367 // The directory in user data dir that contains the profile to be used with the |
| 2370 // app launcher. | 2368 // app launcher. |
| 2371 extern const char kAppListProfile[] = "app_list.profile"; | 2369 extern const char kAppListProfile[] = "app_list.profile"; |
| 2372 | 2370 |
| 2373 } // namespace prefs | 2371 } // namespace prefs |
| OLD | NEW |