// Copyright (c) 2012 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_EV_BUBBLE_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ #pragma once #include "chrome/browser/ui/views/location_bar/icon_label_bubble_view.h" #include "chrome/browser/ui/views/location_bar/page_info_helper.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, SkColor color, LocationBarView* location_bar); virtual ~EVBubbleView(); // Overridden from view. virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE; virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE; virtual ui::GestureStatus OnGestureEvent( const views::GestureEvent& event) OVERRIDE; private: PageInfoHelper page_info_helper_; DISALLOW_IMPLICIT_CONSTRUCTORS(EVBubbleView); }; #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_