blob: 4ff70c35d73c8de1f48d199e96d7ce4ec253f84e [file] [log] [blame]
[email protected]4fb64132011-06-13 18:46:451// 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]5950f5712011-06-20 22:15:525#import "chrome/browser/mac/keystone_registration.h"
[email protected]4fb64132011-06-13 18:46:456
7namespace keystone_registration {
8
9// Definitions of the Keystone registration constants needed here. From
10// KSRegistration.m.
11
12NSString* KSRegistrationVersionKey = @"Version";
13NSString* KSRegistrationExistenceCheckerTypeKey = @"ExistenceCheckerType";
14NSString* KSRegistrationExistenceCheckerStringKey = @"ExistenceCheckerString";
15NSString* KSRegistrationServerURLStringKey = @"URLString";
16NSString* KSRegistrationPreserveTrustedTesterTokenKey = @"PreserveTTT";
17NSString* KSRegistrationTagKey = @"Tag";
18NSString* KSRegistrationTagPathKey = @"TagPath";
19NSString* KSRegistrationTagKeyKey = @"TagKey";
20NSString* KSRegistrationBrandPathKey = @"BrandPath";
21NSString* KSRegistrationBrandKeyKey = @"BrandKey";
22NSString* KSRegistrationVersionPathKey = @"VersionPath";
23NSString* KSRegistrationVersionKeyKey = @"VersionKey";
24
25NSString* KSRegistrationDidCompleteNotification =
26 @"KSRegistrationDidCompleteNotification";
27NSString* KSRegistrationPromotionDidCompleteNotification =
28 @"KSRegistrationPromotionDidCompleteNotification";
29
30NSString* KSRegistrationCheckForUpdateNotification =
31 @"KSRegistrationCheckForUpdateNotification";
32NSString* KSRegistrationStatusKey = @"Status";
33NSString* KSRegistrationUpdateCheckErrorKey = @"Error";
ryanmyersfffe8c7402016-03-25 01:21:1634NSString* KSRegistrationUpdateCheckRawResultsKey = @"RawResults";
35NSString* KSRegistrationUpdateCheckRawErrorMessagesKey = @"RawErrorMessages";
[email protected]4fb64132011-06-13 18:46:4536
37NSString* KSRegistrationStartUpdateNotification =
38 @"KSRegistrationStartUpdateNotification";
39NSString* KSUpdateCheckSuccessfulKey = @"CheckSuccessful";
40NSString* KSUpdateCheckSuccessfullyInstalledKey = @"SuccessfullyInstalled";
41
42NSString* KSRegistrationRemoveExistingTag = @"";
43
mlerman1e9f61ce2015-03-23 18:14:0044NSString* KSReportingAttributeValueKey = @"value";
45NSString* KSReportingAttributeExpirationDateKey = @"expiresAt";
46NSString* KSReportingAttributeAggregationTypeKey = @"aggregation";
47
[email protected]4fb64132011-06-13 18:46:4548} // namespace keystone_registration