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 1696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1707 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types"; | 1707 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types"; |
1708 | 1708 |
1709 // Dictionary from sync model type (as an int) to max invalidation | 1709 // Dictionary from sync model type (as an int) to max invalidation |
1710 // version (int64 represented as a string). | 1710 // version (int64 represented as a string). |
1711 const char kSyncMaxInvalidationVersions[] = "sync.max_invalidation_versions"; | 1711 const char kSyncMaxInvalidationVersions[] = "sync.max_invalidation_versions"; |
1712 | 1712 |
1713 // The GUID session sync will use to identify this client, even across sync | 1713 // The GUID session sync will use to identify this client, even across sync |
1714 // disable/enable events. | 1714 // disable/enable events. |
1715 const char kSyncSessionsGUID[] = "sync.session_sync_guid"; | 1715 const char kSyncSessionsGUID[] = "sync.session_sync_guid"; |
1716 | 1716 |
| 1717 // An ID to uniquely identify this client to the invalidator service. |
| 1718 const char kInvalidatorClientId[] = "invalidator.client_id"; |
| 1719 |
1717 // Opaque state from the invalidation subsystem that is persisted via prefs. | 1720 // Opaque state from the invalidation subsystem that is persisted via prefs. |
1718 // The value is base 64 encoded. | 1721 // The value is base 64 encoded. |
1719 const char kInvalidatorInvalidationState[] = "invalidator.invalidation_state"; | 1722 const char kInvalidatorInvalidationState[] = "invalidator.invalidation_state"; |
1720 | 1723 |
1721 // List of {source, name, max invalidation version} tuples. source is an int, | 1724 // List of {source, name, max invalidation version} tuples. source is an int, |
1722 // while max invalidation version is an int64; both are stored as string | 1725 // while max invalidation version is an int64; both are stored as string |
1723 // representations though. | 1726 // representations though. |
1724 const char kInvalidatorMaxInvalidationVersions[] = | 1727 const char kInvalidatorMaxInvalidationVersions[] = |
1725 "invalidator.max_invalidation_versions"; | 1728 "invalidator.max_invalidation_versions"; |
1726 | 1729 |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2227 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2230 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2228 | 2231 |
2229 #if defined(OS_CHROMEOS) | 2232 #if defined(OS_CHROMEOS) |
2230 // The RLZ brand code, if enabled. | 2233 // The RLZ brand code, if enabled. |
2231 const char kRLZBrand[] = "rlz.brand"; | 2234 const char kRLZBrand[] = "rlz.brand"; |
2232 // Whether RLZ pings are disabled. | 2235 // Whether RLZ pings are disabled. |
2233 const char kRLZDisabled[] = "rlz.disabled"; | 2236 const char kRLZDisabled[] = "rlz.disabled"; |
2234 #endif | 2237 #endif |
2235 | 2238 |
2236 } // namespace prefs | 2239 } // namespace prefs |
OLD | NEW |