chromium/chrome/browser/ui/lens/lens_overlay_side_panel_web_view.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 CHROME_BROWSER_UI_LENS_LENS_OVERLAY_SIDE_PANEL_WEB_VIEW_H_
#define CHROME_BROWSER_UI_LENS_LENS_OVERLAY_SIDE_PANEL_WEB_VIEW_H_

#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/lens/lens_untrusted_ui.h"
#include "chrome/browser/ui/views/side_panel/side_panel_web_ui_view.h"
#include "content/public/browser/file_select_listener.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/controls/webview/unhandled_keyboard_event_handler.h"
#include "ui/views/controls/webview/webview.h"

namespace lens {
class LensOverlaySidePanelCoordinator;
}  // namespace lens

namespace content {
class BrowserContext;
}  // namespace content

// LensOverlaySidePanelWebView holds custom behavior needed for the lens overlay
// that separates it from other views. This includes context menu support and
// opening urls in a new tab.
class LensOverlaySidePanelWebView
    : public SidePanelWebUIViewT<lens::LensUntrustedUI> {};

#endif  // CHROME_BROWSER_UI_LENS_LENS_OVERLAY_SIDE_PANEL_WEB_VIEW_H_