Chromium Code Reviews| 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; |
|
Jeffrey Yasskin
2016/09/07 02:01:47
Is 'row' no longer an index?
juncai
2016/09/09 20:06:15
It is still an index. Just want to make the variab
Jeffrey Yasskin
2016/09/14 20:08:36
Ok.
|
| // 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_ |