1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #import <Cocoa/Cocoa.h>
7 #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
12 // Manages the first run bubble.
13 @interface FirstRunBubbleController
: BaseBubbleController
{
15 IBOutlet NSTextField
* header_
;
20 // Creates and shows a first run bubble. |browser| is NULL in unittests.
21 + (FirstRunBubbleController
*) showForView
:(NSView
*)view
22 offset
:(NSPoint
)offset
23 browser
:(Browser
*)browser
24 profile
:(Profile
*)profile
;
26 // Handle the bubble's 'Change' button; direct users to search engine options.
27 - (IBAction
)onChange
:(id
)sender
;