Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1158)

Side by Side Diff: chrome/browser/mac/keystone_registration.h

Issue 1769703002: Add viewing of error messages from Keystone upon self-update failure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review feedback pt3 + error message l10n Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698