| 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 #import "chrome/browser/mac/keystone_registration.h" | 5 #import "chrome/browser/mac/keystone_registration.h" |
| 6 | 6 |
| 7 namespace keystone_registration { | 7 namespace keystone_registration { |
| 8 | 8 |
| 9 // Definitions of the Keystone registration constants needed here. From | 9 // Definitions of the Keystone registration constants needed here. From |
| 10 // KSRegistration.m. | 10 // KSRegistration.m. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 NSString* KSRegistrationStatusKey = @"Status"; | 32 NSString* KSRegistrationStatusKey = @"Status"; |
| 33 NSString* KSRegistrationUpdateCheckErrorKey = @"Error"; | 33 NSString* KSRegistrationUpdateCheckErrorKey = @"Error"; |
| 34 | 34 |
| 35 NSString* KSRegistrationStartUpdateNotification = | 35 NSString* KSRegistrationStartUpdateNotification = |
| 36 @"KSRegistrationStartUpdateNotification"; | 36 @"KSRegistrationStartUpdateNotification"; |
| 37 NSString* KSUpdateCheckSuccessfulKey = @"CheckSuccessful"; | 37 NSString* KSUpdateCheckSuccessfulKey = @"CheckSuccessful"; |
| 38 NSString* KSUpdateCheckSuccessfullyInstalledKey = @"SuccessfullyInstalled"; | 38 NSString* KSUpdateCheckSuccessfullyInstalledKey = @"SuccessfullyInstalled"; |
| 39 | 39 |
| 40 NSString* KSRegistrationRemoveExistingTag = @""; | 40 NSString* KSRegistrationRemoveExistingTag = @""; |
| 41 | 41 |
| 42 NSString* KSReportingAttributeValueKey = @"value"; | |
| 43 NSString* KSReportingAttributeExpirationDateKey = @"expiresAt"; | |
| 44 NSString* KSReportingAttributeAggregationTypeKey = @"aggregation"; | |
| 45 | |
| 46 } // namespace keystone_registration | 42 } // namespace keystone_registration |
| OLD | NEW |