chromium/chrome/browser/ui/views/page_action/page_action_icon_container.h

// Copyright 2018 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_VIEWS_PAGE_ACTION_PAGE_ACTION_ICON_CONTAINER_H_
#define CHROME_BROWSER_UI_VIEWS_PAGE_ACTION_PAGE_ACTION_ICON_CONTAINER_H_

#include <memory>

#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/layout/box_layout_view.h"
#include "ui/views/view.h"

class PageActionIconController;
struct PageActionIconParams;

// Class implemented by a container view that holds page action icons.
class PageActionIconContainer {};

// Implements a default icon container for page action icons.
class PageActionIconContainerView : public views::BoxLayoutView,
                                    public PageActionIconContainer {};

#endif  // CHROME_BROWSER_UI_VIEWS_PAGE_ACTION_PAGE_ACTION_ICON_CONTAINER_H_