#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 { … };
}
ContextMenuDelegate::ContextMenuDelegate(content::WebContents* web_contents) { … }
ContextMenuDelegate::~ContextMenuDelegate() { … }
void ContextMenuDelegate::ClearWebContents() { … }
ContextMenuDelegate* ContextMenuDelegate::FromWebContents(
content::WebContents* web_contents) { … }