chromium/components/renderer_context_menu/context_menu_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 "components/renderer_context_menu/context_menu_delegate.h"

#include <memory>

#include "base/memory/raw_ptr.h"
#include "content/public/browser/web_contents.h"

namespace {

const char kMenuDelegateUserDataKey[] =;

class ContextMenuDelegateUserData : public base::SupportsUserData::Data {};

}  // namespace

ContextMenuDelegate::ContextMenuDelegate(content::WebContents* web_contents) {}

ContextMenuDelegate::~ContextMenuDelegate() {}

void ContextMenuDelegate::ClearWebContents() {}

// static
ContextMenuDelegate* ContextMenuDelegate::FromWebContents(
    content::WebContents* web_contents) {}