blob: 924e8d0258b7c49bedcfab691f3161cf08f143e8 [file] [log] [blame] [edit]
// Copyright 2017 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_LOCATION_BAR_INTENT_PICKER_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_INTENT_PICKER_VIEW_H_
#include "chrome/browser/ui/views/page_action/page_action_icon_view.h"
#include "ui/base/metadata/metadata_header_macros.h"
class Browser;
// The entry point for the intent picker.
class IntentPickerView : public PageActionIconView {
public:
METADATA_HEADER(IntentPickerView);
IntentPickerView(Browser* browser,
IconLabelBubbleView::Delegate* icon_label_bubble_delegate,
PageActionIconView::Delegate* page_action_icon_delegate);
IntentPickerView(const IntentPickerView&) = delete;
IntentPickerView& operator=(const IntentPickerView&) = delete;
~IntentPickerView() override;
// PageActionIconView:
void UpdateImpl() override;
protected:
// PageActionIconView:
void OnExecuting(PageActionIconView::ExecuteSource execute_source) override;
views::BubbleDialogDelegate* GetBubble() const override;
const gfx::VectorIcon& GetVectorIcon() const override;
std::u16string GetTextForTooltipAndAccessibleName() const override;
private:
bool GetShowIcon() const;
Browser* const browser_;
};
#endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_INTENT_PICKER_VIEW_H_