blob: 5528499a0aedfcf736f11e2dbd8886e8e40e075a [file] [log] [blame]
// 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"
class Browser;
// The entry point for the intent picker.
class IntentPickerView : public PageActionIconView {
public:
IntentPickerView(Browser* browser,
IconLabelBubbleView::Delegate* icon_label_bubble_delegate,
PageActionIconView::Delegate* page_action_icon_delegate);
~IntentPickerView() override;
// PageActionIconView:
void UpdateImpl() override;
protected:
// PageActionIconView:
void OnExecuting(PageActionIconView::ExecuteSource execute_source) override;
views::BubbleDialogDelegateView* GetBubble() const override;
const gfx::VectorIcon& GetVectorIcon() const override;
base::string16 GetTextForTooltipAndAccessibleName() const override;
const char* GetClassName() const override;
private:
bool IsIncognitoMode() const;
bool ShouldShowIcon() const;
Browser* const browser_;
DISALLOW_COPY_AND_ASSIGN(IntentPickerView);
};
#endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_INTENT_PICKER_VIEW_H_