OLD | NEW |
1 // Copyright (c) 2010 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_STAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/views/info_bubble.h" | 9 #include "chrome/browser/ui/views/info_bubble.h" |
10 #include "views/controls/image_view.h" | 10 #include "views/controls/image_view.h" |
11 | 11 |
12 class CommandUpdater; | 12 class CommandUpdater; |
13 class InfoBubble; | 13 class InfoBubble; |
14 | 14 |
15 namespace views { | 15 namespace views { |
16 class KeyEvent; | 16 class KeyEvent; |
17 class MouseEvent; | 17 class MouseEvent; |
18 } | 18 } |
19 | 19 |
(...skipping 19 matching lines...) Expand all Loading... |
39 virtual bool CloseOnEscape(); | 39 virtual bool CloseOnEscape(); |
40 virtual bool FadeInOnShow() { return false; } | 40 virtual bool FadeInOnShow() { return false; } |
41 | 41 |
42 // The CommandUpdater for the Browser object that owns the location bar. | 42 // The CommandUpdater for the Browser object that owns the location bar. |
43 CommandUpdater* command_updater_; | 43 CommandUpdater* command_updater_; |
44 | 44 |
45 DISALLOW_IMPLICIT_CONSTRUCTORS(StarView); | 45 DISALLOW_IMPLICIT_CONSTRUCTORS(StarView); |
46 }; | 46 }; |
47 | 47 |
48 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_ | 48 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_ |
OLD | NEW |