| Index: chrome/browser/ui/views/first_run_bubble.cc
|
| diff --git a/chrome/browser/ui/views/first_run_bubble.cc b/chrome/browser/ui/views/first_run_bubble.cc
|
| index bc838ab586400dd5ee21efeebb511934e854f45f..d95e0bb2e7d6619c749777b3753d9c604c79f1a6 100644
|
| --- a/chrome/browser/ui/views/first_run_bubble.cc
|
| +++ b/chrome/browser/ui/views/first_run_bubble.cc
|
| @@ -30,7 +30,7 @@
|
| using content::UserMetricsAction;
|
|
|
| namespace {
|
| -const int kAnchorVerticalOffset = -4;
|
| +const int kAnchorVerticalInset = 5;
|
| const int kLayoutTopInset = 1;
|
| const int kLayoutLeftInset = 2;
|
| const int kLayoutBottomInset = 7;
|
| @@ -102,7 +102,7 @@ void FirstRunBubble::Init() {
|
| gfx::Rect FirstRunBubble::GetAnchorRect() {
|
| // Compensate for padding in anchor.
|
| gfx::Rect rect(BubbleDelegateView::GetAnchorRect());
|
| - rect.Offset(0, anchor_view() ? kAnchorVerticalOffset : 0);
|
| + rect.Inset(0, anchor_view() ? kAnchorVerticalInset : 0);
|
| return rect;
|
| }
|
|
|
|
|