// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "chrome/browser/mac/keystone_registration.h"

namespace keystone_registration {

// Definitions of the Keystone registration constants needed here. From
// KSRegistration.m.

NSString* KSRegistrationVersionKey = @"Version";
NSString* KSRegistrationExistenceCheckerTypeKey = @"ExistenceCheckerType";
NSString* KSRegistrationExistenceCheckerStringKey = @"ExistenceCheckerString";
NSString* KSRegistrationServerURLStringKey = @"URLString";
NSString* KSRegistrationPreserveTrustedTesterTokenKey = @"PreserveTTT";
NSString* KSRegistrationTagKey = @"Tag";
NSString* KSRegistrationTagPathKey = @"TagPath";
NSString* KSRegistrationTagKeyKey = @"TagKey";
NSString* KSRegistrationBrandPathKey = @"BrandPath";
NSString* KSRegistrationBrandKeyKey = @"BrandKey";
NSString* KSRegistrationVersionPathKey = @"VersionPath";
NSString* KSRegistrationVersionKeyKey = @"VersionKey";

NSString* KSRegistrationDidCompleteNotification =
    @"KSRegistrationDidCompleteNotification";
NSString* KSRegistrationPromotionDidCompleteNotification =
    @"KSRegistrationPromotionDidCompleteNotification";

NSString* KSRegistrationCheckForUpdateNotification =
    @"KSRegistrationCheckForUpdateNotification";
NSString* KSRegistrationStatusKey = @"Status";
NSString* KSRegistrationUpdateCheckErrorKey = @"Error";

NSString* KSRegistrationStartUpdateNotification =
    @"KSRegistrationStartUpdateNotification";
NSString* KSUpdateCheckSuccessfulKey = @"CheckSuccessful";
NSString* KSUpdateCheckSuccessfullyInstalledKey = @"SuccessfullyInstalled";

NSString* KSRegistrationRemoveExistingTag = @"";

}  // namespace keystone_registration