OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/ui/views/location_bar/click_handler.h" | 9 #include "chrome/browser/ui/views/location_bar/click_handler.h" |
10 #include "chrome/browser/ui/views/location_bar/icon_label_bubble_view.h" | 10 #include "chrome/browser/ui/views/location_bar/icon_label_bubble_view.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE; | 28 virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE; |
29 virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE; | 29 virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE; |
30 | 30 |
31 private: | 31 private: |
32 ClickHandler click_handler_; | 32 ClickHandler click_handler_; |
33 | 33 |
34 DISALLOW_IMPLICIT_CONSTRUCTORS(EVBubbleView); | 34 DISALLOW_IMPLICIT_CONSTRUCTORS(EVBubbleView); |
35 }; | 35 }; |
36 | 36 |
37 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ | 37 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ |
38 | |
OLD | NEW |