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

Side by Side Diff: ios/chrome/browser/ui/tools_menu/tools_menu_view_tools_cell.h

Issue 2640423003: [ios] Decouples ToolsMenuViewToolsCell from ToolsMenuVC (Closed)
Patch Set: Created 3 years, 11 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698