| 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_BUILD
ER_H_ | |
| 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_BUILD
ER_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 | |
| 14 | |
| 15 + (ContentSuggestionReadingListExtra*)extraWithDistillationStatus: | |
| 16 (ReadingListUIDistillationStatus)status; | |
| 17 | |
| 18 // Status of the distillation. | |
| 19 @property(nonatomic, assign) ReadingListUIDistillationStatus status; | |
| 20 | |
| 21 @end | |
| 22 | |
| 23 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_EXTRA_BU
ILDER_H_ | |
| OLD | NEW |