| // Copyright 2021 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "extensions/browser/extension_frame_host.h" |
| |
| #include "content/public/browser/render_process_host.h" |
| #include "extensions/browser/extension_function_dispatcher.h" |
| #include "extensions/browser/extension_web_contents_observer.h" |
| |
| namespace extensions { |
| |
| ExtensionFrameHost::ExtensionFrameHost(content::WebContents* web_contents) |
| : web_contents_(web_contents), receivers_(web_contents, this) {} |
| |
| ExtensionFrameHost::~ExtensionFrameHost() = default; |
| |
| void ExtensionFrameHost::RequestScriptInjectionPermission( |
| const std::string& extension_id, |
| mojom::InjectionType script_type, |
| mojom::RunLocation run_location, |
| RequestScriptInjectionPermissionCallback callback) { |
| std::move(callback).Run(false); |
| } |
| |
| void ExtensionFrameHost::Request(mojom::RequestParamsPtr params, |
| RequestCallback callback) { |
| content::RenderFrameHost* render_frame_host = |
| receivers_.GetCurrentTargetFrame(); |
| ExtensionWebContentsObserver::GetForWebContents(web_contents_) |
| ->dispatcher() |
| ->Dispatch(std::move(params), render_frame_host, |
| render_frame_host->GetProcess()->GetID(), std::move(callback)); |
| } |
| |
| } // namespace extensions |