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

Side by Side Diff: chrome/browser/cocoa/styled_text_field_test_helper.h

Issue 2769014: Mac/clang: Possibly contentious changes. (Closed)
Patch Set: comments2 Created 10 years, 6 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 <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 #import "chrome/browser/cocoa/styled_text_field_cell.h" 6 #import "chrome/browser/cocoa/styled_text_field_cell.h"
7 7
8 // Subclass of StyledTextFieldCell that allows you to slice off sections on the 8 // Subclass of StyledTextFieldCell that allows you to slice off sections on the
9 // left and right of the cell. 9 // left and right of the cell.
10 @interface StyledTextFieldTestCell : StyledTextFieldCell { 10 @interface StyledTextFieldTestCell : StyledTextFieldCell {
11 CGFloat leftMargin_; 11 CGFloat leftMargin_;
12 CGFloat rightMargin_; 12 CGFloat rightMargin_;
13 } 13 }
14 @property(assign) CGFloat leftMargin; 14 @property (nonatomic, assign) CGFloat leftMargin;
15 @property(assign) CGFloat rightMargin; 15 @property (nonatomic, assign) CGFloat rightMargin;
16 @end 16 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698