[email protected] | 4fb6413 | 2011-06-13 18:46:45 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
[email protected] | 5950f571 | 2011-06-20 22:15:52 | [diff] [blame] | 5 | #import "chrome/browser/mac/keystone_registration.h" |
[email protected] | 4fb6413 | 2011-06-13 18:46:45 | [diff] [blame] | 6 | |
| 7 | namespace keystone_registration { |
| 8 | |
| 9 | // Definitions of the Keystone registration constants needed here. From |
| 10 | // KSRegistration.m. |
| 11 | |
| 12 | NSString* KSRegistrationVersionKey = @"Version"; |
| 13 | NSString* KSRegistrationExistenceCheckerTypeKey = @"ExistenceCheckerType"; |
| 14 | NSString* KSRegistrationExistenceCheckerStringKey = @"ExistenceCheckerString"; |
| 15 | NSString* KSRegistrationServerURLStringKey = @"URLString"; |
| 16 | NSString* KSRegistrationPreserveTrustedTesterTokenKey = @"PreserveTTT"; |
| 17 | NSString* KSRegistrationTagKey = @"Tag"; |
| 18 | NSString* KSRegistrationTagPathKey = @"TagPath"; |
| 19 | NSString* KSRegistrationTagKeyKey = @"TagKey"; |
| 20 | NSString* KSRegistrationBrandPathKey = @"BrandPath"; |
| 21 | NSString* KSRegistrationBrandKeyKey = @"BrandKey"; |
| 22 | NSString* KSRegistrationVersionPathKey = @"VersionPath"; |
| 23 | NSString* KSRegistrationVersionKeyKey = @"VersionKey"; |
| 24 | |
| 25 | NSString* KSRegistrationDidCompleteNotification = |
| 26 | @"KSRegistrationDidCompleteNotification"; |
| 27 | NSString* KSRegistrationPromotionDidCompleteNotification = |
| 28 | @"KSRegistrationPromotionDidCompleteNotification"; |
| 29 | |
| 30 | NSString* KSRegistrationCheckForUpdateNotification = |
| 31 | @"KSRegistrationCheckForUpdateNotification"; |
| 32 | NSString* KSRegistrationStatusKey = @"Status"; |
| 33 | NSString* KSRegistrationUpdateCheckErrorKey = @"Error"; |
ryanmyers | fffe8c740 | 2016-03-25 01:21:16 | [diff] [blame] | 34 | NSString* KSRegistrationUpdateCheckRawResultsKey = @"RawResults"; |
| 35 | NSString* KSRegistrationUpdateCheckRawErrorMessagesKey = @"RawErrorMessages"; |
[email protected] | 4fb6413 | 2011-06-13 18:46:45 | [diff] [blame] | 36 | |
| 37 | NSString* KSRegistrationStartUpdateNotification = |
| 38 | @"KSRegistrationStartUpdateNotification"; |
| 39 | NSString* KSUpdateCheckSuccessfulKey = @"CheckSuccessful"; |
| 40 | NSString* KSUpdateCheckSuccessfullyInstalledKey = @"SuccessfullyInstalled"; |
| 41 | |
| 42 | NSString* KSRegistrationRemoveExistingTag = @""; |
| 43 | |
mlerman | 1e9f61ce | 2015-03-23 18:14:00 | [diff] [blame] | 44 | NSString* KSReportingAttributeValueKey = @"value"; |
| 45 | NSString* KSReportingAttributeExpirationDateKey = @"expiresAt"; |
| 46 | NSString* KSReportingAttributeAggregationTypeKey = @"aggregation"; |
| 47 | |
[email protected] | 4fb6413 | 2011-06-13 18:46:45 | [diff] [blame] | 48 | } // namespace keystone_registration |