chromium/ios/chrome/browser/lens_overlay/coordinator/lens_omnibox_client_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_LENS_OVERLAY_COORDINATOR_LENS_OMNIBOX_CLIENT_DELEGATE_H_
#define IOS_CHROME_BROWSER_LENS_OVERLAY_COORDINATOR_LENS_OMNIBOX_CLIENT_DELEGATE_H_

#import <string>

class GURL;

/// Delegate for LensOmniboxClient.
@protocol LensOmniboxClientDelegate

/// Omnibox did accept a suggestion with `text` and `destinationURL`.
- (void)omniboxDidAcceptText:(const std::u16string&)text
              destinationURL:(const GURL&)destinationURL;

@end

#endif  // IOS_CHROME_BROWSER_LENS_OVERLAY_COORDINATOR_LENS_OMNIBOX_CLIENT_DELEGATE_H_