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 |