blob: 0492c30c8c8d56fce5c2ad85cce623e02f0e536f [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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_HISTORY_HISTORY_UI_DELEGATE_H_
#define IOS_CHROME_BROWSER_UI_HISTORY_HISTORY_UI_DELEGATE_H_
#include "base/ios/block_types.h"
// Protocol to communicate HistoryTableViewController actions to its
// coordinator.
@protocol HistoryUIDelegate
// Notifies the coordinator that history should be dismissed.
- (void)dismissHistoryWithCompletion:(ProceduralBlock)completionHandler;
// Notifies the coordinator that Privacy Settings should be displayed.
- (void)displayPrivacySettings;
@end
#endif // IOS_CHROME_BROWSER_UI_HISTORY_HISTORY_UI_DELEGATE_H_