Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
lpromero
2017/01/20 09:05:16
2017. Idem second file. Use ./tools/boilerplate.py
sczs
2017/01/20 23:03:15
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_VIEW_TOOLS_CELL_H_ | |
| 6 #define IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_VIEW_TOOLS_CELL_H_ | |
| 7 | |
| 8 #import <UIKit/UIKit.h> | |
| 9 | |
| 10 @interface ToolsMenuViewToolsCell : UICollectionViewCell | |
|
lpromero
2017/01/20 09:05:16
Add a class comment.
sczs
2017/01/20 23:03:15
Done.
| |
| 11 @property(nonatomic, retain) UIButton* reloadButton; | |
|
marq (ping after 24h)
2017/01/20 10:23:16
Each property needs a comment. Is it expected that
sczs
2017/01/20 23:03:15
Are you asking because of nullability annotations?
| |
| 12 @property(nonatomic, retain) UIButton* shareButton; | |
| 13 @property(nonatomic, retain) UIButton* starButton; | |
| 14 @property(nonatomic, retain) UIButton* starredButton; | |
| 15 @property(nonatomic, retain) UIButton* stopButton; | |
| 16 @property(nonatomic, retain) UIButton* toolsButton; | |
| 17 | |
| 18 // All buttons in the cell added in display order. | |
| 19 - (NSArray*)allButtons; | |
| 20 @end | |
| 21 | |
| 22 #endif // IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_VIEW_TOOLS_CELL_H_ | |
| OLD | NEW |