| Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| index 0928b90d8a247af9b83d4d45947453df5e6ac340..7b5d37e0dfeb9b652ca2ef4b191108c954cc60d9 100644
|
| --- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| +++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h
|
| @@ -49,6 +49,10 @@ class IconLabelBubbleView : public views::InkDropHostView {
|
| views::Label* label() { return label_; }
|
| const views::Label* label() const { return label_; }
|
|
|
| + void set_next_element_interior_padding(int padding) {
|
| + next_element_interior_padding_ = padding;
|
| + }
|
| +
|
| // Gets the color for displaying text.
|
| virtual SkColor GetTextColor() const = 0;
|
|
|
| @@ -108,6 +112,11 @@ class IconLabelBubbleView : public views::InkDropHostView {
|
| views::ImageView* image_;
|
| views::Label* label_;
|
|
|
| + // The padding of the element that will be displayed after |this|. This value
|
| + // is relevant for calculating the amount of space to reserve after the
|
| + // separator.
|
| + int next_element_interior_padding_ = 0;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(IconLabelBubbleView);
|
| };
|
|
|
|
|