chromium/chrome/browser/ui/webui/commerce/shopping_list_context_menu_controller.h

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

#ifndef CHROME_BROWSER_UI_WEBUI_COMMERCE_SHOPPING_LIST_CONTEXT_MENU_CONTROLLER_H_
#define CHROME_BROWSER_UI_WEBUI_COMMERCE_SHOPPING_LIST_CONTEXT_MENU_CONTROLLER_H_

#include "base/memory/raw_ptr.h"

namespace bookmarks {
class BookmarkModel;
class BookmarkNode;
}  // namespace bookmarks

namespace ui {
class SimpleMenuModel;
}  // namespace ui

namespace commerce {

class ShoppingService;
class ShoppingServiceHandler;

// Helper class for shopping-related items in side panel context menu. This
// class is created and owned by BookmarksSidePanelUI so that it can be used for
// context menu controlling in the bookmark side panel.
class ShoppingListContextMenuController {};

}  // namespace commerce

#endif  // CHROME_BROWSER_UI_WEBUI_COMMERCE_SHOPPING_LIST_CONTEXT_MENU_CONTROLLER_H_