// 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 CHROME_BROWSER_UI_WEBUI_SEARCHBOX_LENS_SEARCHBOX_CLIENT_H_ #define CHROME_BROWSER_UI_WEBUI_SEARCHBOX_LENS_SEARCHBOX_CLIENT_H_ #include "components/lens/proto/server/lens_overlay_response.pb.h" #include "components/omnibox/browser/autocomplete_match_type.h" #include "components/sessions/core/session_id.h" #include "third_party/metrics_proto/omnibox_event.pb.h" #include "url/gurl.h" // Interface that allows the Lens searchbox to interact with its embedder // (i.e., LensOverlayController). class LensSearchboxClient { … }; #endif // CHROME_BROWSER_UI_WEBUI_SEARCHBOX_LENS_SEARCHBOX_CLIENT_H_