Chromium Code Reviews| Index: ios/clean/chrome/browser/ui/tab_collection/tab_collection_view_controller.h |
| diff --git a/ios/clean/chrome/browser/ui/tab_collection/tab_collection_view_controller.h b/ios/clean/chrome/browser/ui/tab_collection/tab_collection_view_controller.h |
| index d7dada9675c1be338b9fbea5b34ddba94172ad9d..d7e31a856b065acbc844eb02fa1fe8cc2071be68 100644 |
| --- a/ios/clean/chrome/browser/ui/tab_collection/tab_collection_view_controller.h |
| +++ b/ios/clean/chrome/browser/ui/tab_collection/tab_collection_view_controller.h |
| @@ -9,8 +9,6 @@ |
| #import "ios/clean/chrome/browser/ui/tab_collection/tab_collection_consumer.h" |
| -@protocol TabCollectionDataSource; |
| - |
| // Controller for a scrolling view displaying square cells that represent |
| // the user's open tabs. |
| @interface TabCollectionViewController |
| @@ -20,6 +18,8 @@ |
| // Model for collection view. |
| @property(nonatomic, strong, readonly) |
| NSMutableArray<TabCollectionItem*>* items; |
| +// Selected index of tab collection. |
| +@property(nonatomic, assign) int selectedIndex; |
|
marq (ping after 24h)
2017/06/02 11:31:00
Does this need to be public? The consumer protocol
edchin
2017/06/02 17:24:59
Done.
|
| @end |
| #endif // IOS_CLEAN_CHROME_BROWSER_UI_TAB_COLLECTION_TAB_COLLECTION_VIEW_CONTROLLER_H_ |