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

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, fix SetShowFirstRunBubblePref and test, update copyright years. 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
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..9db7eac5d74250ba8feb2b2f3fa9eeadf1e9b9fa 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,15 @@ 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;
+
+- (IBAction)onChange:(id)sender;
Miranda Callahan 2012/01/10 22:25:47 nit: Please add a comment indicating exactly what
msw 2012/01/11 00:27:10 Done.
+
@end

Powered by Google App Engine
This is Rietveld 408576698