| // Copyright 2022 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef IOS_CHROME_COMMON_UI_FAVICON_FAVICON_CONSTANTS_H_ |
| #define IOS_CHROME_COMMON_UI_FAVICON_FAVICON_CONSTANTS_H_ |
| |
| #import <Foundation/Foundation.h> |
| #import <UIKit/UIKit.h> |
| |
| // Minimal acceptable favicon size, in points. |
| extern CGFloat const kMinFaviconSizePt; |
| // Desired small favicon size, in points. |
| extern CGFloat const kDesiredSmallFaviconSizePt; |
| // Desired medium favicon size, in points. |
| extern CGFloat const kDesiredMediumFaviconSizePt; |
| |
| #endif // IOS_CHROME_COMMON_UI_FAVICON_FAVICON_CONSTANTS_H_ |