#include "extensions/shell/browser/shell_app_view_guest_delegate.h"
#include "extensions/shell/browser/shell_app_delegate.h"
namespace extensions {
ShellAppViewGuestDelegate::ShellAppViewGuestDelegate() = default;
ShellAppViewGuestDelegate::~ShellAppViewGuestDelegate() = default;
bool ShellAppViewGuestDelegate::HandleContextMenu(
content::RenderFrameHost& render_frame_host,
const content::ContextMenuParams& params) {
return true;
}
AppDelegate* ShellAppViewGuestDelegate::CreateAppDelegate(
content::BrowserContext* browser_context) {
return new ShellAppDelegate();
}
}