| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_ICON_LABEL_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "gfx/size.h" | 11 #include "ui/gfx/size.h" |
| 12 #include "views/painter.h" | 12 #include "views/painter.h" |
| 13 #include "views/view.h" | 13 #include "views/view.h" |
| 14 | 14 |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 class Canvas; | 16 class Canvas; |
| 17 class Font; | 17 class Font; |
| 18 } | 18 } |
| 19 namespace views { | 19 namespace views { |
| 20 class ImageView; | 20 class ImageView; |
| 21 class Label; | 21 class Label; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // The contents of the bubble. | 55 // The contents of the bubble. |
| 56 views::ImageView* image_; | 56 views::ImageView* image_; |
| 57 views::Label* label_; | 57 views::Label* label_; |
| 58 | 58 |
| 59 int item_padding_; | 59 int item_padding_; |
| 60 | 60 |
| 61 DISALLOW_IMPLICIT_CONSTRUCTORS(IconLabelBubbleView); | 61 DISALLOW_IMPLICIT_CONSTRUCTORS(IconLabelBubbleView); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_ | 64 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_ |
| OLD | NEW |