chromium/chrome/browser/ui/views/site_data/site_data_row_view.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_VIEWS_SITE_DATA_SITE_DATA_ROW_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_SITE_DATA_SITE_DATA_ROW_VIEW_H_

#include "components/content_settings/core/common/content_settings.h"
#include "ui/base/interaction/element_identifier.h"
#include "ui/base/interaction/element_tracker.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/controls/button/image_button.h"
#include "ui/views/view.h"
#include "url/origin.h"

class FaviconCache;
class Profile;

namespace gfx {
class Image;
}  // namespace gfx

namespace views {
class ImageView;
class Label;
class ImageButton;
class MenuRunner;
}  // namespace views

namespace ui {
class MenuModel;
}  // namespace ui

namespace url {
class Origin;
}  // namespace url

DECLARE_CUSTOM_ELEMENT_EVENT_TYPE();

// The view that represents a site that has acesss to the data or was blocked
// from accessing the data in the context of the currently visited website. The
// view is used as a row in the site data dialog. It contains a favicon (with a
// fallback icon), a hostname and a menu icon. The menu allows to change the
// cookies content setting for the site or delete the site data.
class SiteDataRowView : public views::View {};

#endif  // CHROME_BROWSER_UI_VIEWS_SITE_DATA_SITE_DATA_ROW_VIEW_H_