| Index: chrome/browser/ui/cocoa/chooser_content_view_cocoa.h
|
| diff --git a/chrome/browser/ui/cocoa/chooser_content_view_cocoa.h b/chrome/browser/ui/cocoa/chooser_content_view_cocoa.h
|
| index 99a737779541a75e0bcf4984867b3976b38f4999..a7c5b333282ed84b90e451f572f53fbbe016cf8e 100644
|
| --- a/chrome/browser/ui/cocoa/chooser_content_view_cocoa.h
|
| +++ b/chrome/browser/ui/cocoa/chooser_content_view_cocoa.h
|
| @@ -71,7 +71,7 @@ class ChooserController;
|
| - (base::scoped_nsobject<NSTextField>)createChooserTitle:(NSString*)title;
|
|
|
| // Creates a table row view for the chooser.
|
| -- (base::scoped_nsobject<NSView>)createTableRowView:(NSInteger)rowIndex;
|
| +- (base::scoped_nsobject<NSView>)createTableRowView:(NSInteger)row;
|
|
|
| // The height of a table row view.
|
| - (CGFloat)tableRowViewHeight:(NSInteger)row;
|
| @@ -88,9 +88,6 @@ class ChooserController;
|
| // Creates the separator.
|
| - (base::scoped_nsobject<NSBox>)createSeparator;
|
|
|
| -// Creates a text field with |text|.
|
| -- (base::scoped_nsobject<NSTextField>)createTextField:(NSString*)text;
|
| -
|
| // Creates a hyperlink button with |text|.
|
| - (base::scoped_nsobject<NSButton>)createHyperlinkButtonWithText:
|
| (NSString*)text;
|
| @@ -164,6 +161,9 @@ class ChooserController;
|
| // Gets the text from table row view. For testing only.
|
| - (NSTextField*)tableRowViewText:(NSInteger)row;
|
|
|
| +// Gets the paired status from table row view. For testing only.
|
| +- (NSTextField*)tableRowViewPairedStatus:(NSInteger)row;
|
| +
|
| @end
|
|
|
| #endif // CHROME_BROWSER_UI_COCOA_CHOOSER_CONTENT_VIEW_COCOA_H_
|
|
|