| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 - (BOOL)registerWithParameters:(NSDictionary*)args { | 29 - (BOOL)registerWithParameters:(NSDictionary*)args { |
| 30 return NO; | 30 return NO; |
| 31 } | 31 } |
| 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 - (void)setActive { | 38 - (BOOL)setActive { |
| 39 return NO; |
| 39 } | 40 } |
| 40 | 41 |
| 41 - (void)checkForUpdate { | 42 - (void)checkForUpdateWasUserInitiated:(BOOL)userInitiated { |
| 42 } | 43 } |
| 43 | 44 |
| 44 - (void)startUpdate { | 45 - (void)startUpdate { |
| 45 } | 46 } |
| 46 | 47 |
| 47 - (ksr::KSRegistrationTicketType)ticketType { | 48 - (ksr::KSRegistrationTicketType)ticketType { |
| 48 return ksr::kKSRegistrationDontKnowWhatKindOfTicket; | 49 return ksr::kKSRegistrationDontKnowWhatKindOfTicket; |
| 49 } | 50 } |
| 50 | 51 |
| 51 @end | 52 @end |
| 52 | 53 |
| 53 | 54 |
| 54 @implementation FakeKeystoneRegistration | 55 @implementation FakeKeystoneRegistration |
| 55 | 56 |
| 56 // Send the notifications that a real KeystoneGlue object would send. | 57 // Send the notifications that a real KeystoneGlue object would send. |
| 57 | 58 |
| 58 - (void)checkForUpdate { | 59 - (void)checkForUpdateWasUserInitiated:(BOOL)userInitiated { |
| 59 NSNumber* yesNumber = [NSNumber numberWithBool:YES]; | 60 NSNumber* yesNumber = [NSNumber numberWithBool:YES]; |
| 60 NSString* statusKey = @"Status"; | 61 NSString* statusKey = @"Status"; |
| 61 NSDictionary* dictionary = [NSDictionary dictionaryWithObject:yesNumber | 62 NSDictionary* dictionary = [NSDictionary dictionaryWithObject:yesNumber |
| 62 forKey:statusKey]; | 63 forKey:statusKey]; |
| 63 NSNotificationCenter* center = [NSNotificationCenter defaultCenter]; | 64 NSNotificationCenter* center = [NSNotificationCenter defaultCenter]; |
| 64 [center postNotificationName:ksr::KSRegistrationCheckForUpdateNotification | 65 [center postNotificationName:ksr::KSRegistrationCheckForUpdateNotification |
| 65 object:nil | 66 object:nil |
| 66 userInfo:dictionary]; | 67 userInfo:dictionary]; |
| 67 } | 68 } |
| 68 | 69 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 [glue stopTimer]; | 214 [glue stopTimer]; |
| 214 | 215 |
| 215 // Brief exercise of callbacks | 216 // Brief exercise of callbacks |
| 216 [glue addFakeRegistration]; | 217 [glue addFakeRegistration]; |
| 217 [glue checkForUpdate]; | 218 [glue checkForUpdate]; |
| 218 [glue installUpdate]; | 219 [glue installUpdate]; |
| 219 ASSERT_TRUE([glue confirmCallbacks]); | 220 ASSERT_TRUE([glue confirmCallbacks]); |
| 220 } | 221 } |
| 221 | 222 |
| 222 } // namespace | 223 } // namespace |
| OLD | NEW |