blob: c5fc7a8240a6a9e2b955cec0468c1c68e827ec97 [file] [log] [blame]
// Copyright 2022 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_COMMANDS_LENS_COMMANDS_H_
#define IOS_CHROME_BROWSER_UI_COMMANDS_LENS_COMMANDS_H_
@class SearchImageWithLensCommand;
enum class LensEntrypoint;
// Commands related to Lens.
@protocol LensCommands
// Search for an image with Lens, using `command` parameters.
- (void)searchImageWithLens:(SearchImageWithLensCommand*)command;
// Opens the input selection UI for the given entrypoint.
- (void)openInputSelectionForEntrypoint:(LensEntrypoint)entrypoint;
@end
#endif // IOS_CHROME_BROWSER_UI_COMMANDS_LENS_COMMANDS_H_