diff options
Diffstat (limited to 'chrome/browser/views/first_run_bubble.cc')
-rw-r--r-- | chrome/browser/views/first_run_bubble.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/views/first_run_bubble.cc b/chrome/browser/views/first_run_bubble.cc index 692650c..7728888 100644 --- a/chrome/browser/views/first_run_bubble.cc +++ b/chrome/browser/views/first_run_bubble.cc @@ -471,8 +471,9 @@ void FirstRunMinimalBubbleView::FocusWillChange(View* focused_before, // static FirstRunBubble* FirstRunBubble::Show(Profile* profile, - views::Window* parent, + views::Widget* parent, const gfx::Rect& position_relative_to, + BubbleBorder::ArrowLocation arrow_location, FirstRun::BubbleType bubble_type) { FirstRunBubble* window = new FirstRunBubble(); FirstRunBubbleViewBase* view = NULL; @@ -491,7 +492,7 @@ FirstRunBubble* FirstRunBubble::Show(Profile* profile, NOTREACHED(); } window->set_view(view); - window->Init(parent, position_relative_to, view, window); + window->Init(parent, position_relative_to, arrow_location, view, window); window->GetFocusManager()->AddFocusChangeListener(view); view->BubbleShown(); return window; |