// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_RENDERER_EXTENSION_WEB_VIEW_HELPER_H_ #define EXTENSIONS_RENDERER_EXTENSION_WEB_VIEW_HELPER_H_ #include <optional> #include "third_party/blink/public/web/web_view.h" #include "third_party/blink/public/web/web_view_observer.h" #include "url/origin.h" namespace extensions { // WebView-level plumbing for extension features. class ExtensionWebViewHelper : public blink::WebViewObserver { … }; } // namespace extensions #endif // EXTENSIONS_RENDERER_EXTENSION_WEB_VIEW_HELPER_H_