| Index: chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h b/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h
|
| index b8f6543c34155ebb1b3cfac3de7657a33390dfcd..f88aed1edc3e3a635cf89f32fc866f685c2e3d0e 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h
|
| +++ b/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h
|
| @@ -65,11 +65,17 @@ class LocationBarDecoration;
|
| - (CGFloat)availableWidthInFrame:(const NSRect)frame;
|
|
|
| // Return the frame for |aDecoration| if the cell is in |cellFrame|.
|
| -// Returns |NSZeroRect| for decorations which are not currently
|
| -// visible.
|
| +// Returns |NSZeroRect| for decorations which are not currently visible.
|
| - (NSRect)frameForDecoration:(const LocationBarDecoration*)aDecoration
|
| inFrame:(NSRect)cellFrame;
|
|
|
| +// Returns the frame representing the background of |decoration|. Also sets
|
| +// |isLeftDecoration| according to whether the decoration appears on the left or
|
| +// the right side of the text field.
|
| +- (NSRect)backgroundFrameForDecoration:(LocationBarDecoration*)decoration
|
| + inFrame:(NSRect)cellFrame
|
| + isLeftDecoration:(BOOL*)isLeftDecoration;
|
| +
|
| // Returns true if it's okay to drop dragged data into the view at the
|
| // given location.
|
| - (BOOL)canDropAtLocationInWindow:(NSPoint)location
|
|
|