// Copyright 2026 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_FULLSCREEN_COORDINATOR_FULLSCREEN_MEDIATOR_H_
#define IOS_CHROME_BROWSER_FULLSCREEN_COORDINATOR_FULLSCREEN_MEDIATOR_H_

#import <Foundation/Foundation.h>

#import "ios/chrome/browser/shared/public/commands/fullscreen_commands.h"

@class BrowserLayoutState;
class FullscreenBrowserAgent;
class WebStateList;

// The mediator for the fullscreen feature.
@interface FullscreenMediator : NSObject <FullscreenCommands>

// Initializer for the mediator.
- (instancetype)initWithBrowserAgent:(FullscreenBrowserAgent*)browserAgent
                        webStateList:(WebStateList*)webStateList
                  browserLayoutState:(BrowserLayoutState*)browserLayoutState
    NS_DESIGNATED_INITIALIZER;

- (instancetype)init NS_UNAVAILABLE;

// Disconnects the mediator.
- (void)disconnect;

@end

#endif  // IOS_CHROME_BROWSER_FULLSCREEN_COORDINATOR_FULLSCREEN_MEDIATOR_H_
