Chromium Code Reviews| 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 1749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1760 // them to the policy server. | 1760 // them to the policy server. |
| 1761 const char kDeviceActivityTimes[] = "device_status.activity_times"; | 1761 const char kDeviceActivityTimes[] = "device_status.activity_times"; |
| 1762 | 1762 |
| 1763 // A pref holding the last known location when device location reporting is | 1763 // A pref holding the last known location when device location reporting is |
| 1764 // enabled. | 1764 // enabled. |
| 1765 const char kDeviceLocation[] = "device_status.location"; | 1765 const char kDeviceLocation[] = "device_status.location"; |
| 1766 | 1766 |
| 1767 // A string that is used to store first-time sync startup after once sync is | 1767 // A string that is used to store first-time sync startup after once sync is |
| 1768 // disabled. This will be refreshed every sign-in. | 1768 // disabled. This will be refreshed every sign-in. |
| 1769 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token"; | 1769 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token"; |
| 1770 | |
| 1771 // A pref holding the value of the policy used to disable moutning of external | |
|
Mattias Nissler (ping if slow)
2012/07/09 09:43:01
s/moutning/mounting/
pastarmovj
2012/07/11 01:13:57
Done.
| |
| 1772 // storage for the user. | |
| 1773 const char kExternalStorageDisabled[] = "hardware.extrenal_storage_disabled"; | |
|
Mattias Nissler (ping if slow)
2012/07/09 09:43:01
s/extrenal/external/
pastarmovj
2012/07/11 01:13:57
Done.
| |
| 1770 #endif | 1774 #endif |
| 1771 | 1775 |
| 1772 // Whether there is a Flash version installed that supports clearing LSO data. | 1776 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1773 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1777 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1774 | 1778 |
| 1775 // Whether we should show Pepper Flash-specific settings. | 1779 // Whether we should show Pepper Flash-specific settings. |
| 1776 const char kPepperFlashSettingsEnabled[] = | 1780 const char kPepperFlashSettingsEnabled[] = |
| 1777 "browser.pepper_flash_settings_enabled"; | 1781 "browser.pepper_flash_settings_enabled"; |
| 1778 | 1782 |
| 1779 // String which specifies where to store the disk cache. | 1783 // String which specifies where to store the disk cache. |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1982 const char kNetworkProfileLastWarningTime[] = | 1986 const char kNetworkProfileLastWarningTime[] = |
| 1983 "network_profile.last_warning_time"; | 1987 "network_profile.last_warning_time"; |
| 1984 | 1988 |
| 1985 #if defined(OS_MACOSX) | 1989 #if defined(OS_MACOSX) |
| 1986 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1990 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 1987 const char kMacLeopardObsoleteInfobarLastShown[] = | 1991 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 1988 "mac_105_obsolete_infobar_last_shown"; | 1992 "mac_105_obsolete_infobar_last_shown"; |
| 1989 #endif // defined(OS_MACOSX) | 1993 #endif // defined(OS_MACOSX) |
| 1990 | 1994 |
| 1991 } // namespace prefs | 1995 } // namespace prefs |
| OLD | NEW |