OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_MAC_KEYSTONE_REGISTRATION_H_ | 5 #ifndef CHROME_BROWSER_MAC_KEYSTONE_REGISTRATION_H_ |
6 #define CHROME_BROWSER_MAC_KEYSTONE_REGISTRATION_H_ | 6 #define CHROME_BROWSER_MAC_KEYSTONE_REGISTRATION_H_ |
7 | 7 |
8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
9 #include <Security/Authorization.h> | 9 #include <Security/Authorization.h> |
10 #include <stdint.h> | 10 #include <stdint.h> |
(...skipping 25 matching lines...) Expand all Loading... |
36 extern NSString* KSRegistrationBrandKeyKey; | 36 extern NSString* KSRegistrationBrandKeyKey; |
37 extern NSString* KSRegistrationVersionPathKey; | 37 extern NSString* KSRegistrationVersionPathKey; |
38 extern NSString* KSRegistrationVersionKeyKey; | 38 extern NSString* KSRegistrationVersionKeyKey; |
39 | 39 |
40 extern NSString* KSRegistrationDidCompleteNotification; | 40 extern NSString* KSRegistrationDidCompleteNotification; |
41 extern NSString* KSRegistrationPromotionDidCompleteNotification; | 41 extern NSString* KSRegistrationPromotionDidCompleteNotification; |
42 | 42 |
43 extern NSString* KSRegistrationCheckForUpdateNotification; | 43 extern NSString* KSRegistrationCheckForUpdateNotification; |
44 extern NSString* KSRegistrationStatusKey; | 44 extern NSString* KSRegistrationStatusKey; |
45 extern NSString* KSRegistrationUpdateCheckErrorKey; | 45 extern NSString* KSRegistrationUpdateCheckErrorKey; |
| 46 extern NSString* KSRegistrationUpdateCheckRawResultsKey; |
| 47 extern NSString* KSRegistrationUpdateCheckRawErrorMessagesKey; |
46 | 48 |
47 extern NSString* KSRegistrationStartUpdateNotification; | 49 extern NSString* KSRegistrationStartUpdateNotification; |
48 extern NSString* KSUpdateCheckSuccessfulKey; | 50 extern NSString* KSUpdateCheckSuccessfulKey; |
49 extern NSString* KSUpdateCheckSuccessfullyInstalledKey; | 51 extern NSString* KSUpdateCheckSuccessfullyInstalledKey; |
50 | 52 |
51 extern NSString* KSRegistrationRemoveExistingTag; | 53 extern NSString* KSRegistrationRemoveExistingTag; |
52 | 54 |
53 extern NSString* KSReportingAttributeValueKey; | 55 extern NSString* KSReportingAttributeValueKey; |
54 extern NSString* KSReportingAttributeExpirationDateKey; | 56 extern NSString* KSReportingAttributeExpirationDateKey; |
55 extern NSString* KSReportingAttributeAggregationTypeKey; | 57 extern NSString* KSReportingAttributeAggregationTypeKey; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 94 |
93 + (KSUnsignedReportingAttribute *)reportingAttributeWithValue:(uint32_t)value | 95 + (KSUnsignedReportingAttribute *)reportingAttributeWithValue:(uint32_t)value |
94 name:(NSString *)name | 96 name:(NSString *)name |
95 aggregationType:(KSReportingAggregationType)aggregationType | 97 aggregationType:(KSReportingAggregationType)aggregationType |
96 error:(NSError **)error; | 98 error:(NSError **)error; |
97 | 99 |
98 @end // @interface KSUnsignedReportingAttribute | 100 @end // @interface KSUnsignedReportingAttribute |
99 | 101 |
100 | 102 |
101 #endif // CHROME_BROWSER_MAC_KEYSTONE_REGISTRATION_H_ | 103 #endif // CHROME_BROWSER_MAC_KEYSTONE_REGISTRATION_H_ |
OLD | NEW |