chromium/chrome/browser/guest_view/mime_handler_view/chrome_mime_handler_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/mime_handler_view/chrome_mime_handler_view_guest_delegate.h"

#include <utility>

#include "chrome/browser/accessibility/pdf_ocr_metrics.h"
#include "chrome/browser/renderer_context_menu/render_view_context_menu.h"
#include "chrome/browser/ui/tab_contents/chrome_web_contents_menu_helper.h"
#include "components/pdf/common/constants.h"
#include "components/pdf/common/pdf_util.h"
#include "components/renderer_context_menu/context_menu_delegate.h"
#include "content/public/browser/web_contents.h"

namespace extensions {

ChromeMimeHandlerViewGuestDelegate::ChromeMimeHandlerViewGuestDelegate() {}

ChromeMimeHandlerViewGuestDelegate::~ChromeMimeHandlerViewGuestDelegate() {}

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

void ChromeMimeHandlerViewGuestDelegate::RecordLoadMetric(
    bool is_full_page,
    const std::string& mime_type,
    content::BrowserContext* browser_context) {}

}  // namespace extensions