| // Copyright 2020 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. |
| |
| #ifndef IOS_CHROME_BROWSER_UPGRADE_UPGRADE_CONSTANTS_H_ |
| #define IOS_CHROME_BROWSER_UPGRADE_UPGRADE_CONSTANTS_H_ |
| |
| #import <Foundation/Foundation.h> |
| |
| // The user defaults key for the upgrade version. |
| extern NSString* const kIOSChromeNextVersionKey; |
| // The user defaults key for the upgrade URL. |
| extern NSString* const kIOSChromeUpgradeURLKey; |
| // The user defaults key for up to date status; |
| extern NSString* const kIOSChromeUpToDateKey; |
| // The user defaults key for the last time the update infobar was shown. |
| extern NSString* const kLastInfobarDisplayTimeKey; |
| // The amount of time that must elapse before showing the infobar again. |
| extern const NSTimeInterval kInfobarDisplayIntervalInSeconds; |
| |
| #endif // IOS_CHROME_BROWSER_UPGRADE_UPGRADE_CONSTANTS_H_ |