chromium/ios/chrome/common/ui/favicon/favicon_container_view.h

// Copyright 2021 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_CONTAINER_VIEW_H_
#define IOS_CHROME_COMMON_UI_FAVICON_FAVICON_CONTAINER_VIEW_H_

#import <UIKit/UIKit.h>

@class FaviconView;

@interface FaviconContainerView : UIView

@property(nonatomic, readonly, strong) FaviconView* faviconView;

// Sets the favicon's background color. Can be nil to reset to original value.
- (void)setFaviconBackgroundColor:(UIColor*)color;

// Sets the favicon view border color. Can be nil to reset to original value.
- (void)setFaviconBorderColor:(UIColor*)color;

@end

#endif  // IOS_CHROME_COMMON_UI_FAVICON_FAVICON_CONTAINER_VIEW_H_