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_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_H_ | |
| 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_H_ | |
| 7 | |
| 8 #import <Foundation/Foundation.h> | |
| 9 | |
| 10 #import "ios/chrome/browser/ui/reading_list/reading_list_collection_view_item.h" | |
| 11 | |
| 12 // Extra information available for the ContentSuggestion of type reading list. | |
| 13 @interface ContentSuggestionReadingListExtra : NSObject | |
|
Olivier
2017/04/05 11:58:11
the file name should probably include ReadingList,
gambard
2017/04/05 12:24:43
The idea is to have a file defining all the extra
Olivier
2017/04/05 13:07:23
So may be add _builders to the file name? or somet
gambard
2017/04/06 09:28:50
Done.
| |
| 14 | |
| 15 + (ContentSuggestionReadingListExtra*)extraWithStatus: | |
|
Olivier
2017/04/05 13:45:22
reading list status is read/unread.
ExtraWithDisti
gambard
2017/04/06 09:28:50
Done.
| |
| 16 (ReadingListUIDistillationStatus)status; | |
| 17 | |
| 18 // Status of the distillation. | |
| 19 @property(nonatomic, assign) ReadingListUIDistillationStatus status; | |
|
Olivier
2017/04/05 11:58:11
Why not ReadingListSuggestionExtra::ReadingListSug
gambard
2017/04/05 12:24:43
Because ReadingListSuggestionExtra::ReadingListSug
Olivier
2017/04/05 13:07:23
Why?
Is there a circular dependency?
Olivier
2017/04/05 13:45:22
Ack, discussed offline.
| |
| 20 | |
| 21 @end | |
| 22 | |
| 23 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_H_ | |
| OLD | NEW |