| 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 ab778f3439438d3a63f9e53a14b7d334bb1630fa..a0c8ab133df44bc6a4d55473564c0e78fe05e2c9 100644
|
| --- a/chrome/browser/ui/cocoa/first_run_bubble_controller.h
|
| +++ b/chrome/browser/ui/cocoa/first_run_bubble_controller.h
|
| @@ -7,10 +7,12 @@
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| +#import "base/mac/scoped_nsobject.h"
|
| #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
|
|
|
| class Browser;
|
| class Profile;
|
| +@class FirstRunKeyResponder;
|
|
|
| // Manages the first run bubble.
|
| @interface FirstRunBubbleController : BaseBubbleController {
|
| @@ -18,6 +20,7 @@ class Profile;
|
| IBOutlet NSTextField* header_;
|
| Browser* browser_;
|
| Profile* profile_;
|
| + base::scoped_nsobject<FirstRunKeyResponder> keyResponder_;
|
| }
|
|
|
| // Creates and shows a first run bubble. |browser| is NULL in unittests.
|
|
|