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 <Foundation/Foundation.h> | 5 #import <Foundation/Foundation.h> |
6 #import <objc/objc-class.h> | 6 #import <objc/objc-class.h> |
7 | 7 |
8 #import "chrome/browser/mac/keystone_glue.h" | 8 #import "chrome/browser/mac/keystone_glue.h" |
9 #import "chrome/browser/mac/keystone_registration.h" | 9 #import "chrome/browser/mac/keystone_registration.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 - (BOOL)promoteWithParameters:(NSDictionary*)args | 33 - (BOOL)promoteWithParameters:(NSDictionary*)args |
34 authorization:(AuthorizationRef)authorization { | 34 authorization:(AuthorizationRef)authorization { |
35 return NO; | 35 return NO; |
36 } | 36 } |
37 | 37 |
38 - (BOOL)setActive { | 38 - (BOOL)setActive { |
39 return NO; | 39 return NO; |
40 } | 40 } |
41 | 41 |
| 42 - (BOOL)setActiveWithReportingAttributes:(NSArray*)reportingAttributes |
| 43 error:(NSError**)error { |
| 44 return NO; |
| 45 } |
| 46 |
42 - (void)checkForUpdateWasUserInitiated:(BOOL)userInitiated { | 47 - (void)checkForUpdateWasUserInitiated:(BOOL)userInitiated { |
43 } | 48 } |
44 | 49 |
45 - (void)startUpdate { | 50 - (void)startUpdate { |
46 } | 51 } |
47 | 52 |
48 - (ksr::KSRegistrationTicketType)ticketType { | 53 - (ksr::KSRegistrationTicketType)ticketType { |
49 return ksr::kKSRegistrationDontKnowWhatKindOfTicket; | 54 return ksr::kKSRegistrationDontKnowWhatKindOfTicket; |
50 } | 55 } |
51 | 56 |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 [glue stopTimer]; | 219 [glue stopTimer]; |
215 | 220 |
216 // Brief exercise of callbacks | 221 // Brief exercise of callbacks |
217 [glue addFakeRegistration]; | 222 [glue addFakeRegistration]; |
218 [glue checkForUpdate]; | 223 [glue checkForUpdate]; |
219 [glue installUpdate]; | 224 [glue installUpdate]; |
220 ASSERT_TRUE([glue confirmCallbacks]); | 225 ASSERT_TRUE([glue confirmCallbacks]); |
221 } | 226 } |
222 | 227 |
223 } // namespace | 228 } // namespace |
OLD | NEW |