blob: ef6e219d729235c33598fa17e07a2dc860e36347 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// 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_INFO_CHOSEN_OBJECT_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PAGE_INFO_CHOSEN_OBJECT_VIEW_H_
#include "base/macros.h"
#include "chrome/browser/ui/page_info/page_info_ui.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/view.h"
namespace views {
class ImageButton;
class ImageView;
} // namespace views
class ChosenObjectViewObserver;
// A ChosenObjectView is a row in the Page Info bubble that shows an individual
// object (e.g. a Bluetooth device, a USB device) that the current site has
// access to.
class ChosenObjectView : public views::View, public views::ButtonListener {
public:
explicit ChosenObjectView(std::unique_ptr<PageInfoUI::ChosenObjectInfo> info);
~ChosenObjectView() override;
void AddObserver(ChosenObjectViewObserver* observer);
private:
// views::ButtonListener implementation.
void ButtonPressed(views::Button* sender, const ui::Event& event) override;
views::ImageView* icon_; // Owned by the views hierarchy.
views::ImageButton* delete_button_; // Owned by the views hierarchy.
base::ObserverList<ChosenObjectViewObserver>::Unchecked observer_list_;
std::unique_ptr<PageInfoUI::ChosenObjectInfo> info_;
DISALLOW_COPY_AND_ASSIGN(ChosenObjectView);
};
#endif // CHROME_BROWSER_UI_VIEWS_PAGE_INFO_CHOSEN_OBJECT_VIEW_H_