blob: 42ff9af1503ab87517afdf9011d80bab121258ea [file] [log] [blame]
// Copyright 2025 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_SHARED_PUBLIC_COMMANDS_READER_MODE_COMMANDS_H_
#define IOS_CHROME_BROWSER_SHARED_PUBLIC_COMMANDS_READER_MODE_COMMANDS_H_
// Commands protocol to show/hide the Reader mode UI.
@protocol ReaderModeCommands <NSObject>
// Shows the Reader mode UI.
- (void)showReaderMode;
// Hides the Reader mode UI.
- (void)hideReaderMode;
// Shows the Reader mode UI if currently inactive and vice-versa.
- (void)toggleReaderMode;
@end
#endif // IOS_CHROME_BROWSER_SHARED_PUBLIC_COMMANDS_READER_MODE_COMMANDS_H_