chromium/ios/chrome/browser/ui/search_with/search_with_mediator.h

// Copyright 2023 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_UI_SEARCH_WITH_SEARCH_WITH_MEDIATOR_H_
#define IOS_CHROME_BROWSER_UI_SEARCH_WITH_SEARCH_WITH_MEDIATOR_H_

#import <UIKit/UIKit.h>

#import "ios/chrome/browser/ui/search_with/search_with_delegate.h"

@protocol ApplicationCommands;
class TemplateURLService;
class WebStateList;

// Mediator that mediates between the browser container views and the
// search with tab helpers.
@interface SearchWithMediator : NSObject <SearchWithDelegate>

// Initializer for a mediator. `webStateList` is the WebStateList for the
// BrowserContainer that owns this mediator.
- (instancetype)initWithWebStateList:(WebStateList*)webStateList
                  templateURLService:(TemplateURLService*)templateURLService
                           incognito:(BOOL)incognito NS_DESIGNATED_INITIALIZER;
- (instancetype)init NS_UNAVAILABLE;

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

// The handler for ApplicationCommands commands.
@property(nonatomic, weak) id<ApplicationCommands> applicationCommandHandler;

@end

#endif  // IOS_CHROME_BROWSER_UI_SEARCH_WITH_SEARCH_WITH_MEDIATOR_H_