| 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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 // A boolean pref of whether to show 3G promo notification. | 780 // A boolean pref of whether to show 3G promo notification. |
| 781 const char kShow3gPromoNotification[] = | 781 const char kShow3gPromoNotification[] = |
| 782 "settings.internet.mobile.show_3g_promo_notification"; | 782 "settings.internet.mobile.show_3g_promo_notification"; |
| 783 | 783 |
| 784 // A string pref that contains version where "What's new" promo was shown. | 784 // A string pref that contains version where "What's new" promo was shown. |
| 785 const char kChromeOSReleaseNotesVersion[] = "settings.release_notes.version"; | 785 const char kChromeOSReleaseNotesVersion[] = "settings.release_notes.version"; |
| 786 | 786 |
| 787 // A boolean pref that uses shared proxies. | 787 // A boolean pref that uses shared proxies. |
| 788 const char kUseSharedProxies[] = "settings.use_shared_proxies"; | 788 const char kUseSharedProxies[] = "settings.use_shared_proxies"; |
| 789 | 789 |
| 790 // A string prefs for OAuth1 token. | |
| 791 const char kOAuth1Token[] = "settings.account.oauth1_token"; | |
| 792 | |
| 793 // A string prefs for OAuth1 secret. | |
| 794 const char kOAuth1Secret[] = "settings.account.oauth1_secret"; | |
| 795 | |
| 796 // A boolean pref that enables the (private) pepper GetID() call. | 790 // A boolean pref that enables the (private) pepper GetID() call. |
| 797 const char kEnableCrosDRM[] = "settings.privacy.drm_enabled"; | 791 const char kEnableCrosDRM[] = "settings.privacy.drm_enabled"; |
| 798 | 792 |
| 799 // A dictionary pref that specifies per-display overscan data. Its key is the | 793 // A dictionary pref that specifies per-display overscan data. Its key is the |
| 800 // display's ID and its value is a dictionary of canceling overscan pixels for | 794 // display's ID and its value is a dictionary of canceling overscan pixels for |
| 801 // 'top', 'right', 'bottom', 'left'. | 795 // 'top', 'right', 'bottom', 'left'. |
| 802 const char kDisplayOverscans[] = "settings.display.overscans"; | 796 const char kDisplayOverscans[] = "settings.display.overscans"; |
| 803 | 797 |
| 804 // A 64bit integer pref that specifies the name of the primary display device. | 798 // A 64bit integer pref that specifies the name of the primary display device. |
| 805 const char kPrimaryDisplayID[] = "settings.display.primary_id"; | 799 const char kPrimaryDisplayID[] = "settings.display.primary_id"; |
| (...skipping 1509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2315 const char kRLZDisabled[] = "rlz.disabled"; | 2309 const char kRLZDisabled[] = "rlz.disabled"; |
| 2316 #endif | 2310 #endif |
| 2317 | 2311 |
| 2318 #if defined(ENABLE_APP_LIST) | 2312 #if defined(ENABLE_APP_LIST) |
| 2319 // The directory in user data dir that contains the profile to be used with the | 2313 // The directory in user data dir that contains the profile to be used with the |
| 2320 // app launcher. | 2314 // app launcher. |
| 2321 extern const char kAppListProfile[] = "app_list.profile"; | 2315 extern const char kAppListProfile[] = "app_list.profile"; |
| 2322 #endif | 2316 #endif |
| 2323 | 2317 |
| 2324 } // namespace prefs | 2318 } // namespace prefs |
| OLD | NEW |