OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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. |
| 4 |
| 5 #import <Cocoa/Cocoa.h> |
| 6 |
| 7 #import "chrome/browser/cocoa/base_bubble_controller.h" |
| 8 |
| 9 class Profile; |
| 10 |
| 11 // Manages the first run bubble. |
| 12 @interface FirstRunBubbleController : BaseBubbleController { |
| 13 @private |
| 14 // Header label. |
| 15 IBOutlet NSTextField* header_; |
| 16 |
| 17 Profile* profile_; |
| 18 } |
| 19 |
| 20 // Creates and shows a firstRun bubble. |
| 21 + (FirstRunBubbleController*) showForView:(NSView*)view |
| 22 offset:(NSPoint)offset |
| 23 profile:(Profile*)profile; |
| 24 @end |
OLD | NEW |