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

Unified Diff: chrome/browser/ui/cocoa/first_run_bubble_controller.h

Issue 9016036: Implement the new first run bubble, clean up old bubbles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync and merge. Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/browser/ui/cocoa/first_run_bubble_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/first_run_bubble_controller.h
diff --git a/chrome/browser/ui/cocoa/first_run_bubble_controller.h b/chrome/browser/ui/cocoa/first_run_bubble_controller.h
index 5c5f7687644c7027b1ba93d1a168cc5587bf3653..34c101b561500d8b72e3de65e1c2c3e578c1ee11 100644
--- a/chrome/browser/ui/cocoa/first_run_bubble_controller.h
+++ b/chrome/browser/ui/cocoa/first_run_bubble_controller.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -11,14 +11,16 @@ class Profile;
// Manages the first run bubble.
@interface FirstRunBubbleController : BaseBubbleController {
@private
- // Header label.
IBOutlet NSTextField* header_;
-
Profile* profile_;
}
-// Creates and shows a firstRun bubble.
+// Creates and shows a first run bubble.
+ (FirstRunBubbleController*) showForView:(NSView*)view
offset:(NSPoint)offset
profile:(Profile*)profile;
+
+// Handle the bubble's 'Change' button; direct users to search engine options.
+- (IBAction)onChange:(id)sender;
+
@end
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/browser/ui/cocoa/first_run_bubble_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698