Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 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_SUGGESTIONS_SUGGESTIONS_EXPANDABLE_ARTICLE_H_ | |
| 6 #define IOS_CHROME_BROWSER_UI_SUGGESTIONS_SUGGESTIONS_EXPANDABLE_ARTICLE_H_ | |
| 7 | |
| 8 #import <UIKit/UIKit.h> | |
| 9 | |
| 10 // Protocol allowing an item to be expanded. | |
|
marq (ping after 24h)
2017/01/17 13:42:16
Specify 'CollectionViewItem'
gambard
2017/01/17 14:46:56
Done.
| |
| 11 @protocol SuggestionsExpandableArticle | |
|
marq (ping after 24h)
2017/01/17 13:42:16
Make it less specific: ExpandableItem.
gambard
2017/01/17 14:46:56
Done.
| |
| 12 | |
| 13 // Whether the cells should be in expanded mode. | |
| 14 @property(nonatomic) BOOL expanded; | |
| 15 | |
| 16 @end | |
| 17 | |
| 18 #endif // IOS_CHROME_BROWSER_UI_SUGGESTIONS_SUGGESTIONS_EXPANDABLE_ARTICLE_H_ | |
| OLD | NEW |