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

Side by Side Diff: chrome/browser/cocoa/styled_text_field.mm

Issue 2127009: Cleanup a bunch of TODO(shess). (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 7 months 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/cocoa/styled_text_field.h" 5 #import "chrome/browser/cocoa/styled_text_field.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #import "chrome/browser/cocoa/styled_text_field_cell.h" 8 #import "chrome/browser/cocoa/styled_text_field_cell.h"
9 9
10 @implementation StyledTextField 10 @implementation StyledTextField
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 StyledTextFieldCell* cell = [self styledTextFieldCell]; 42 StyledTextFieldCell* cell = [self styledTextFieldCell];
43 const NSRect frame([cell drawingRectForBounds:[self bounds]]); 43 const NSRect frame([cell drawingRectForBounds:[self bounds]]);
44 NSView* subview = [subviews objectAtIndex:0]; 44 NSView* subview = [subviews objectAtIndex:0];
45 if (NSEqualRects(frame, [subview frame])) { 45 if (NSEqualRects(frame, [subview frame])) {
46 return; 46 return;
47 } 47 }
48 48
49 [subview setFrame:frame]; 49 [subview setFrame:frame];
50 50
51 // Make sure the selection remains visible. 51 // Make sure the selection remains visible.
52 // TODO(shess) This could be janky if it jerks the visible region
53 // around too much. I believe that text fields only scroll in
54 // response to selection movement (continuing the selection past the
55 // edge, or arrowing the cursor around).
56 [editor scrollRangeToVisible:[editor selectedRange]]; 52 [editor scrollRangeToVisible:[editor selectedRange]];
57 } 53 }
58 54
59 - (CGFloat)availableDecorationWidth { 55 - (CGFloat)availableDecorationWidth {
60 NSAttributedString* as = [self attributedStringValue]; 56 NSAttributedString* as = [self attributedStringValue];
61 const NSSize size([as size]); 57 const NSSize size([as size]);
62 const NSRect bounds([self bounds]); 58 const NSRect bounds([self bounds]);
63 return NSWidth(bounds) - size.width; 59 return NSWidth(bounds) - size.width;
64 } 60 }
65 @end 61 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698