blob: 9a4012beae9bcf5dd0c2b45c5bf8cf022a2f496f [file] [log] [blame]
// 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.
#include "components/services/app_service/public/cpp/menu.h"
namespace apps {
MenuItem::MenuItem(MenuItemType type, int32_t command_id)
: type(type), command_id(command_id) {}
MenuItem::~MenuItem() = default;
MenuItems::MenuItems() = default;
MenuItems::~MenuItems() = default;
MenuItems::MenuItems(MenuItems&&) = default;
MenuItems& MenuItems::operator=(MenuItems&&) = default;
} // namespace apps