// Copyright (c) 2010 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_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ #define CHROME_BROWSER_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ #pragma once #include "chrome/browser/views/location_bar/click_handler.h" #include "chrome/browser/views/location_bar/icon_label_bubble_view.h" class LocationBarView; namespace views { class MouseEvent; } // EVBubbleView displays the EV Bubble in the LocationBarView. class EVBubbleView : public IconLabelBubbleView { public: EVBubbleView(const int background_images[], int contained_image, const SkColor& color, const LocationBarView* location_bar); virtual ~EVBubbleView(); // Overridden from view. virtual bool OnMousePressed(const views::MouseEvent& event); virtual void OnMouseReleased(const views::MouseEvent& event, bool canceled); private: ClickHandler click_handler_; DISALLOW_IMPLICIT_CONSTRUCTORS(EVBubbleView); }; #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_