Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3159)

Unified Diff: chrome/browser/cocoa/about_window_controller.h

Issue 443026: Merge r32598 to the 249 branch.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/249/src/
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/nibs/About.xib ('k') | chrome/browser/cocoa/about_window_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « chrome/app/nibs/About.xib ('k') | chrome/browser/cocoa/about_window_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698