Chromium Code Reviews| Index: ios/chrome/browser/ui/content_suggestions/content_suggestion_extra.h |
| diff --git a/ios/chrome/browser/ui/content_suggestions/content_suggestion_extra.h b/ios/chrome/browser/ui/content_suggestions/content_suggestion_extra.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cec64c7afb50b84eaebfc4131728879f929b7418 |
| --- /dev/null |
| +++ b/ios/chrome/browser/ui/content_suggestions/content_suggestion_extra.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_H_ |
| +#define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_H_ |
| + |
| +#import <Foundation/Foundation.h> |
| + |
| +#import "ios/chrome/browser/ui/reading_list/reading_list_collection_view_item.h" |
| + |
| +// Extra information available for the ContentSuggestion of type reading list. |
| +@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.
|
| + |
| ++ (ContentSuggestionReadingListExtra*)extraWithStatus: |
|
Olivier
2017/04/05 13:45:22
reading list status is read/unread.
ExtraWithDisti
gambard
2017/04/06 09:28:50
Done.
|
| + (ReadingListUIDistillationStatus)status; |
| + |
| +// Status of the distillation. |
| +@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.
|
| + |
| +@end |
| + |
| +#endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_H_ |