// 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. #ifndef COMPONENTS_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_H_ #define COMPONENTS_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_H_ #include "base/memory/raw_ptr.h" #include "content/public/browser/context_menu_params.h" #include "ui/base/models/simple_menu_model.h" // ContextMenuContentType is a helper to decide which category/group of items // are relevant for a given WebContents and a context. // // Subclasses can override the behavior of showing/hiding a category. class ContextMenuContentType { … }; #endif // COMPONENTS_RENDERER_CONTEXT_MENU_CONTEXT_MENU_CONTENT_TYPE_H_