chromium/ios/chrome/browser/home_customization/ui/home_customization_magic_stack_view_controller.h

// Copyright 2024 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_BROWSER_HOME_CUSTOMIZATION_UI_HOME_CUSTOMIZATION_MAGIC_STACK_VIEW_CONTROLLER_H_
#define IOS_CHROME_BROWSER_HOME_CUSTOMIZATION_UI_HOME_CUSTOMIZATION_MAGIC_STACK_VIEW_CONTROLLER_H_

#import <UIKit/UIKit.h>

#import "ios/chrome/browser/home_customization/ui/home_customization_magic_stack_consumer.h"

@protocol HomeCustomizationDelegate;
@protocol HomeCustomizationMutator;

// The view controller representing the Magic Stack page within the Home
// Customization menu.
@interface HomeCustomizationMagicStackViewController
    : UIViewController <HomeCustomizationMagicStackConsumer>

// Mutator for communicating with the HomeCustomizationMediator.
@property(nonatomic, weak) id<HomeCustomizationMutator> mutator;

// Delegate for communicating with the coordinator.
@property(nonatomic, weak) id<HomeCustomizationDelegate> delegate;

@end

#endif  // IOS_CHROME_BROWSER_HOME_CUSTOMIZATION_UI_HOME_CUSTOMIZATION_MAGIC_STACK_VIEW_CONTROLLER_H_