Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / styled_text_field_test_helper.mm
blob20f566df98874f795d45ed327605900de2900ceb
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
3 // found in the LICENSE file.
5 #import <Cocoa/Cocoa.h>
6 #import "chrome/browser/ui/cocoa/styled_text_field_test_helper.h"
8 @implementation StyledTextFieldTestCell
9 @synthesize leftMargin = leftMargin_;
10 @synthesize rightMargin = rightMargin_;
12 - (NSRect)textFrameForFrame:(NSRect)frame {
13   NSRect textFrame = [super textFrameForFrame:frame];
14   textFrame.origin.x += leftMargin_;
15   textFrame.size.width -= (leftMargin_ + rightMargin_);
16   return textFrame;
18 @end