Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: ios/chrome/browser/ui/content_suggestions/content_suggestion_extra_builder.h

Issue 2865183003: Use the same design for all suggestions (Closed)
Patch Set: Address comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698