| Index: chrome/browser/ui/cocoa/find_bar/find_bar_text_field_cell.mm
|
| diff --git a/chrome/browser/ui/cocoa/find_bar/find_bar_text_field_cell.mm b/chrome/browser/ui/cocoa/find_bar/find_bar_text_field_cell.mm
|
| index b3fd5211d34773ffd4b8db4360c5c4552d99d45c..167a63fa1b6d9fb5e632a68080593ac4a358332e 100644
|
| --- a/chrome/browser/ui/cocoa/find_bar/find_bar_text_field_cell.mm
|
| +++ b/chrome/browser/ui/cocoa/find_bar/find_bar_text_field_cell.mm
|
| @@ -13,8 +13,6 @@
|
|
|
| namespace {
|
|
|
| -const CGFloat kBaselineAdjust = 1.0;
|
| -
|
| // How far to offset the keyword token into the field.
|
| const NSInteger kResultsXOffset = 3;
|
|
|
| @@ -40,8 +38,12 @@ CGFloat WidthForResults(NSAttributedString* resultsString) {
|
|
|
| @implementation FindBarTextFieldCell
|
|
|
| -- (CGFloat)baselineAdjust {
|
| - return kBaselineAdjust;
|
| +- (CGFloat)topTextFrameOffset {
|
| + return 1.0;
|
| +}
|
| +
|
| +- (CGFloat)bottomTextFrameOffset {
|
| + return 1.0;
|
| }
|
|
|
| - (CGFloat)cornerRadius {
|
|
|