Chromium Code Reviews| Index: chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
| index c9e0292c21a0376aae8330a8c73ca0bfc92b37df..285b09cbd872f6c9900a5b781c54f8750f41d132 100644 |
| --- a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
| @@ -274,7 +274,9 @@ BookmarkBubbleView::BookmarkBubbleView( |
| remove_bookmark_(false), |
| apply_edits_(true) { |
| // Compensate for built-in vertical padding in the anchor view's image. |
| - set_anchor_view_insets(gfx::Insets(2, 0, 2, 0)); |
| + // This is different from 5 pixel inset that is used in other cases because |
| + // this bubble is using NONE as the arrow type. |
| + set_anchor_view_insets(gfx::Insets(-1, 0, -1, 0)); |
|
Evan Stade
2016/03/14 21:57:53
nit: gfx::Insets(-1, 0)
can you colocate this wit
varkha
2016/03/14 22:13:06
Done.
|
| } |
| base::string16 BookmarkBubbleView::GetTitle() { |