// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/shell/browser/shell_web_view_guest_delegate.h" namespace extensions { ShellWebViewGuestDelegate::ShellWebViewGuestDelegate() = default; ShellWebViewGuestDelegate::~ShellWebViewGuestDelegate() = default; bool ShellWebViewGuestDelegate::HandleContextMenu( content::RenderFrameHost& render_frame_host, const content::ContextMenuParams& params) { … } void ShellWebViewGuestDelegate::OnShowContextMenu(int request_id) { … } } // namespace extensions