| Index: chrome/browser/cocoa/about_window_controller.h
|
| ===================================================================
|
| --- chrome/browser/cocoa/about_window_controller.h (revision 33241)
|
| +++ chrome/browser/cocoa/about_window_controller.h (working copy)
|
| @@ -10,9 +10,10 @@
|
| @class BackgroundTileView;
|
| class Profile;
|
|
|
| -// kUserClosedAboutNotification is the name of the notification posted when
|
| -// the About window is closed.
|
| -extern const NSString* const kUserClosedAboutNotification;
|
| +// This simple subclass of |NSTextView| just doesn't show the (text) cursor
|
| +// (|NSTextView| displays the cursor with full keyboard accessibility enabled).
|
| +@interface AboutLegalTextView : NSTextView
|
| +@end
|
|
|
| // A window controller that handles the About box.
|
| @interface AboutWindowController : NSWindowController {
|
| @@ -21,7 +22,7 @@
|
| IBOutlet BackgroundTileView* backgroundView_;
|
| IBOutlet NSImageView* logoView_;
|
| IBOutlet NSView* legalBlock_;
|
| - IBOutlet NSTextView* legalText_;
|
| + IBOutlet AboutLegalTextView* legalText_;
|
| IBOutlet NSView* updateBlock_; // Holds everything related to updates
|
| IBOutlet NSProgressIndicator* spinner_;
|
| IBOutlet NSImageView* updateStatusIndicator_;
|
|
|