| Index: chrome/browser/cocoa/about_window_controller.h
|
| diff --git a/chrome/browser/cocoa/about_window_controller.h b/chrome/browser/cocoa/about_window_controller.h
|
| index 75c1ac677e2568c3a2da94557b9b38a1801c1d7e..99e175e39b8492c0aea8e3abccadc6c45c5bcc47 100644
|
| --- a/chrome/browser/cocoa/about_window_controller.h
|
| +++ b/chrome/browser/cocoa/about_window_controller.h
|
| @@ -10,6 +10,11 @@
|
| @class BackgroundTileView;
|
| class Profile;
|
|
|
| +// 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 {
|
| @private
|
| @@ -17,7 +22,7 @@ class Profile;
|
| 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_;
|
|
|