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 1624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1635 // reported along with device policy requests. | 1635 // reported along with device policy requests. |
1636 const char kReportDeviceVersionInfo[] = "device_status.report_version_info"; | 1636 const char kReportDeviceVersionInfo[] = "device_status.report_version_info"; |
1637 | 1637 |
1638 // A boolean pref that indicates whether device activity times should be | 1638 // A boolean pref that indicates whether device activity times should be |
1639 // recorded and reported along with device policy requests. | 1639 // recorded and reported along with device policy requests. |
1640 const char kReportDeviceActivityTimes[] = "device_status.report_activity_times"; | 1640 const char kReportDeviceActivityTimes[] = "device_status.report_activity_times"; |
1641 | 1641 |
1642 // The local state pref that stores device activity times before reporting | 1642 // The local state pref that stores device activity times before reporting |
1643 // them to the policy server. | 1643 // them to the policy server. |
1644 extern const char kDeviceActivityTimes[] = "device_status.activity_times"; | 1644 extern const char kDeviceActivityTimes[] = "device_status.activity_times"; |
| 1645 |
| 1646 // A string that is used to store first-time sync startup after once sync is |
| 1647 // disabled. This will be refreshed every sign-in. |
| 1648 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token"; |
1645 #endif | 1649 #endif |
1646 | 1650 |
1647 // Whether there is a Flash version installed that supports clearing LSO data. | 1651 // Whether there is a Flash version installed that supports clearing LSO data. |
1648 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1652 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1649 | 1653 |
1650 // String which specifies where to store the disk cache. | 1654 // String which specifies where to store the disk cache. |
1651 const char kDiskCacheDir[] = "browser.disk_cache_dir"; | 1655 const char kDiskCacheDir[] = "browser.disk_cache_dir"; |
1652 // Pref name for the policy specifying the maximal cache size. | 1656 // Pref name for the policy specifying the maximal cache size. |
1653 const char kDiskCacheSize[] = "browser.disk_cache_size"; | 1657 const char kDiskCacheSize[] = "browser.disk_cache_size"; |
1654 // Pref name for the policy specifying the maximal media cache size. | 1658 // Pref name for the policy specifying the maximal media cache size. |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1819 const char kRailBreakProportion[] = | 1823 const char kRailBreakProportion[] = |
1820 "gesture.rail_break_proportion"; | 1824 "gesture.rail_break_proportion"; |
1821 const char kRailStartProportion[] = | 1825 const char kRailStartProportion[] = |
1822 "gesture.rail_start_proportion"; | 1826 "gesture.rail_start_proportion"; |
1823 #endif | 1827 #endif |
1824 | 1828 |
1825 // Indicates whether the browser is in managed mode. | 1829 // Indicates whether the browser is in managed mode. |
1826 const char kInManagedMode[] = "managed_mode"; | 1830 const char kInManagedMode[] = "managed_mode"; |
1827 | 1831 |
1828 } // namespace prefs | 1832 } // namespace prefs |
OLD | NEW |