Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: chrome/browser/cocoa/first_run_bubble_controller.h

Issue 2822026: Mac: First run bubble. (Closed)
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698