chromium/ios/chrome/browser/home_customization/coordinator/home_customization_delegate.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_COORDINATOR_HOME_CUSTOMIZATION_DELEGATE_H_
#define IOS_CHROME_BROWSER_HOME_CUSTOMIZATION_COORDINATOR_HOME_CUSTOMIZATION_DELEGATE_H_

// Delegate protocol for the HomeCustomizationCoordinator to communicate with
// its parent coordinator, the NewTabPageCoordinator.
@protocol HomeCustomizationDelegate

// Dismisses the customization menu.
- (void)dismissCustomizationMenu;

@end

#endif  // IOS_CHROME_BROWSER_HOME_CUSTOMIZATION_COORDINATOR_HOME_CUSTOMIZATION_DELEGATE_H_