| Index: chrome/browser/cocoa/about_window_controller.mm
|
| ===================================================================
|
| --- chrome/browser/cocoa/about_window_controller.mm (revision 33241)
|
| +++ chrome/browser/cocoa/about_window_controller.mm (working copy)
|
| @@ -72,9 +72,16 @@
|
|
|
| @end // @interface AboutWindowController(Private)
|
|
|
| -const NSString* const kUserClosedAboutNotification =
|
| - @"UserClosedAboutNotification";
|
| +@implementation AboutLegalTextView
|
|
|
| +// Never draw the insertion point (otherwise, it shows up without any user
|
| +// action if full keyboard accessibility is enabled).
|
| +- (BOOL)shouldDrawInsertionPoint {
|
| + return NO;
|
| +}
|
| +
|
| +@end
|
| +
|
| @implementation AboutWindowController
|
|
|
| - (id)initWithProfile:(Profile*)profile {
|
|
|