// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_WEBUI_EXAMPLES_BROWSER_UI_WEB_WEB_VIEW_H_ #define UI_WEBUI_EXAMPLES_BROWSER_UI_WEB_WEB_VIEW_H_ #include "base/types/pass_key.h" #include "components/guest_view/browser/guest_view.h" #include "components/guest_view/browser/guest_view_base.h" namespace webui_examples { // A content embedding mechanism derived from the extensions <webview> tag // that does not implement any of the extensions API. class WebView : public guest_view::GuestView<WebView> { … }; } // namespace webui_examples #endif // UI_WEBUI_EXAMPLES_BROWSER_UI_WEB_WEB_VIEW_H_