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