chromium/chrome/browser/guest_view/app_view/chrome_app_view_guest_delegate.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/guest_view/app_view/chrome_app_view_guest_delegate.h"

#include <utility>

#include "chrome/browser/renderer_context_menu/render_view_context_menu.h"
#include "chrome/browser/ui/apps/chrome_app_delegate.h"
#include "components/renderer_context_menu/context_menu_delegate.h"
#include "content/public/browser/web_contents.h"

namespace extensions {

ChromeAppViewGuestDelegate::ChromeAppViewGuestDelegate() = default;

ChromeAppViewGuestDelegate::~ChromeAppViewGuestDelegate() = default;

bool ChromeAppViewGuestDelegate::HandleContextMenu(
    content::RenderFrameHost& render_frame_host,
    const content::ContextMenuParams& params) {}

AppDelegate* ChromeAppViewGuestDelegate::CreateAppDelegate(
    content::BrowserContext* browser_context) {}

}  // namespace extensions